MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the program?_x000D_ #include_x000D_ int main()_x000D_ {_x000D_ int a = 300, b, c;_x000D_ if(a >= 400)_x000D_ b = 300;_x000D_ c = 200;_x000D_ printf("%d, %d, %d\n", a, b, c);_x000D_ return 0;_x000D_ } |
| A. | 300, 300, 200 |
| B. | Garbage, 300, 200 |
| C. | 300, Garbage, 200 |
| D. | 300, 300, Garbage |
| Answer» D. 300, 300, Garbage | |