#include <stdio.h>
#defin
#include <stdio.h>
#defin
Practice C Preprocessor –
#include <stdio.h>
#define CUBE(x) (x*x*x)
int main() {
int a, b=3;
a = CUBE(b++);
printf("%d, %d
", a, b);
return 0;
}