

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of following program ? main() { int x=15; printf(“\n%d%d%d”, x!=15, x=20, x |
A. | 0, 20, 1 |
B. | 15, 20, 30 |
C. | 0, 0, 0 |
D. | Error |
Answer» B. 15, 20, 30 | |