What would be the output of the following?
#define SQR(x) x*x main() { int a,b=3; a=SQR(b+2); printf(“%d”,a); }
Reveal answer
Fill a bubble to check yourself
What would be the output of the following?
#define SQR(x) x*x main() { int a,b=3; a=SQR(b+2); printf(“%d”,a); }