Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
#include <stdio.h>#define square(x) x*xint main(){ int x; x = 36/square(6); printf("%d", x); return 0;}
#include <stdio.h>
#define square(x) x*x
int main()
{
int x;
x = 36/square(6);
printf("%d", x);
return 0;
}
Compiler Error
0
1
36
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!