MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the program?_x000D_ #include_x000D_ int X=40;_x000D_ int main()_x000D_ {_x000D_ int X=20;_x000D_ printf("%d\n", X);_x000D_ return 0;_x000D_ } |
| A. | 20 |
| B. | 40 |
| C. | Error |
| D. | No Output |
| Answer» B. 40 | |