Q.

What will be the output of the following code? Void main(){int a=10;int *b=&a;int **c=&b;printf("%d %d %d",a,*b,**c);}

A. 10 10 garbage
B. 10 garbage garbage
C. 10 10 10
D. syntax error
Answer» C. 10 10 10
3.4k
0
Do you find this helpful?
33

Discussion

No comments yet

Related MCQs