Q193
What will be the output of the following C code? #include void main() int k = 5; int *p = &k; int **m = &p; **m = 6; printf("%d ", k);
A.
5
B.
Compile time error
C.
6
AnswerD.
Junk
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board