MCQOPTIONS
Saved Bookmarks
| 1. |
Find the output of the following program.#includevoid main(){int y=10;if(y++>9 && y++!=10 && y++>11)printf("%d", y);elseprintf("%d", y);} |
| A. | 1 |
| B. | 2 |
| C. | 3 |
| D. | 4 |
| E. | ompilation error |
| Answer» D. 4 | |