Question

What is the output of the following C code using #define? #include #define SQUARE(x) x*x int main() {     int a = SQUARE(2+3);     printf("%d",
a);     return 0; }

A 25
B 11
C 10
D 15
E Compilation Error
Practice Next

Hey! Ask a query