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