1.

What is the output of this C code? void main() { int k = 5; int *p = &k; int **m = &p; **m = 6; printf("%d n", k); }

A. 5
B. Compile time error
C. 6
D. Junk
Answer» D. Junk


Discussion

No Comment Found

Related MCQs