MCQOPTIONS
Saved Bookmarks
| 1. |
What will be output if you will compile and execute the following c code? #include#define x 5+2int main(){int i;i=x*x*x;printf("%d",i); return 0;} |
| A. | 343 |
| B. | 27 |
| C. | 133 |
| D. | compiler error |
| Answer» C. 133 | |