MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code? #include <stdio.h> static int var = 15; void main() { var = 19; { int var = 14; } printf("%d", var); } |
| A. | 15 |
| B. | 14 |
| C. | 19 |
| D. | Compilation Error |
| E. | None of these |
| Answer» D. Compilation Error | |