

McqMate
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 |
View all MCQs in
Data Structure and Algorithms (DSA)No comments yet