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