Thursday, 16 August 2012

What is the output if you will compile and execute the following c code? | C Programming

#include<stdio.h>
#definex 5+2
int main()
{
inti;
i=x*x*x;
printf("%d",i);
return0;
}


A. 343
B. 27
C.. 133
D. Compiler error
E. None of above

Ans: B

No comments: