MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this C code? #include <stdio.h> int main() { printf("Hello World! %d \n", x); return 0; } |
| A. | Hello World! x; |
| B. | Hello World! followed by a junk value |
| C. | Compile time error |
| D. | Hello World! |
| Answer» D. Hello World! | |