MCQOPTIONS
Saved Bookmarks
| 1. |
What will be output of the following "c" code? #include void main() { int i=5; printf("%d",i+++++i); } |
| A. | 5 |
| B. | 6 |
| C. | Compiler Error |
| D. | 7 |
| Answer» D. 7 | |