What will be the output of the following C code?
#define sqr(x) x*x
main()
{
int a1;
a1=25/sqr(5);
printf("%d",a1);
}
#define sqr(x) x*x
main()
{
int a1;
a1=25/sqr(5);
printf("%d",a1);
}A. 25
B. 1
C. 5
D. error
Answer: Option A

Join The Discussion