What is the output of this C code?
void main() { int k = 5; int *p = &k; int **m = &p; printf("%d%d%d\n", k, *p, **p); }
Answer: D
No answer description available for this question.