Show the complete macro expansion for:
#define SQUARE(x) ((x) * (x))
#define MAX(a, b) ((a) > (b) ? (a) : (b))
#define CUBE(x) (SQUARE(x) * (x))
result = MAX(SQUARE(3), CUBE(2));
This answer is restricted. Please login to view the answer of this question.
Login Now