1.

What would be output of the following program ? # define SQR(X) (X*X) main() { int a, b=3; a = SQR(b+2); printf(“\n%d”, a); }

A. 25
B. 11
C. Error
D. Garbage value
Answer» C. Error


Discussion

No Comment Found