1.

What will be the output of the program? #include #define MAX(a, b) (a > b ? a : b) int main() { int x; x = MAX(3+2, 2+7); printf("%d\n", x); return 0; }

A. 8
B. 9
C. 6
D. 5
Answer» C. 6


Discussion

No Comment Found