MCQOPTIONS
Saved Bookmarks
| 1. |
Output of following program? #include <stdio.h> int main() { int i = 5; printf("%d %d %d", i++, i++, i++); return 0; } |
| A. | 7 6 5 |
| B. | 5 6 7 |
| C. | 7 7 7 |
| D. | Compiler Dependent |
| Answer» E. | |