MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the program?_x000D_ #include_x000D_ _x000D_ int main()_x000D_ {_x000D_ const c = -11;_x000D_ const int d = 34;_x000D_ printf("%d, %d\n", c, d);_x000D_ return 0;_x000D_ } |
| A. | Error |
| B. | -11, 34 |
| C. | 11, 34 |
| D. | None of these |
| Answer» C. 11, 34 | |