MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> void main() { int t = 12; int *q1 = &t; int **q2 = &q1; **q2 = 13; printf("%d n", t); } |
| A. | Compilation Error |
| B. | 12 |
| C. | 13 |
| D. | Garbage value |
| E. | None of these |
| Answer» D. Garbage value | |