Question:Consider the following code:#define SQ(a) (a*a) int answer = SQ(2 + 3); What will be the value of answer after the above code executes?
#define SQ(a) (a*a) int answer = SQ(2 + 3);
A 10 B 11 C 25 D 13
+ AnswerB
+ Report