MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the following C program#includeint main( ){int i=5;printf("%d %d %d", i++, i, ++i );return 0;} |
| A. | 7 6 6 |
| B. | 5 6 7 |
| C. | 6 7 7 |
| D. | 6 7 8 |
| Answer» C. 6 7 7 | |