Q.

What will be output if you will compile and execute the following c code? #include<stdio.h>
#define x 5+2
int main(){
int i;
i=x*x*x;
printf("%d",i); return 0;
}

A. 343
B. 27
C. 133
D. compiler error
Answer» B. 27
869
0
Do you find this helpful?
2

Discussion

No comments yet

Related MCQs