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