Vidyalelo
C Programming · Q193

Pointer

Programming · C Programming · question 193

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
Answer
D.
Junk

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board