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;
}
β
Correct Answer: (A)
27