Home » C Programming » C Preprocessor

What will be the output of the program? #include<stdio.h> #define MIN(x, y) (x<y)? x : y; int main() { int x=3, y=4, z; z = MIN(x+y/2, y-1); if(z > 0) printf("%d\n", z); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!