Latest TCS Aptitude Question SOLUTION: What is the output of this C code? #include void main() { int k = 5; int *p = &k; int **m = &p; printf("%d%d%dn", k, *p, **p); } a) 5 5 5 b) 5 5 junk c) 5 junk junk d) Compile tim