Home » C Programming » C Preprocessor

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

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!