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