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