MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this C code? void main() { m(); printf("%d", x); } int x; void m() { x = 4; } |
| A. | 4 |
| B. | Compile time error |
| C. | Undefined |
| Answer» C. Undefined | |