Home » C Programming » C Preprocessor

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

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!