MCQOPTIONS
Saved Bookmarks
| 1. |
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» D. syntax error | |