Home » C Programming » C Preprocessor

What will be the output of the program? #include<stdio.h> #define PRINT(i) printf("%d,",i) int main() { int x=2, y=3, z=4; PRINT(x); PRINT(y); PRINT(z); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!