A
Q. What is the output of this program?
Code:
#include <stdio.h>
#define x 3
int main()
{
int i;
i = x*x*x;
printf("%d",i);
return 0;
}
#define x 3
int main()
{
int i;
i = x*x*x;
printf("%d",i);
return 0;
}
- Correct Answer - Option(A)
- Views: 24
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.