MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code? #include int x = 5; void main() { int x = 3; printf("%d", x); { int x = 4; } printf("%d", x); } |
| A. | 3 3 |
| B. | 3 4 |
| C. | 3 5 |
| D. | Run time error |
| Answer» B. 3 4 | |