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); else printf("%d", y);} |
| A. | 11 |
| B. | 12 |
| C. | 13 |
| D. | 14 |
| E. | Compilation error |
| Answer» D. 14 | |