MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this C code? static int x; void main() { int x; printf("x is %d", x); } |
| A. | Junk value |
| B. | Run time error |
| C. | Nothing |
| Answer» C. Nothing | |