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); }
Answer: C
No answer description available for this question.