Q. What is the output of this program?
Code:
#include <stdio.h>
#include <stdlib.h>
#define square(x) x*x
int main()
{
int i;
i = 27/square(3);
printf("%d",i);
return 0;
}
β
Correct Answer: (C)
27