โช Choose the correct option.
#include
#define CUBE(x) (x*x*x)
int main() {
int a, b=3;
a = CUBE(b++);
printf("%d, %d ", a, b);
return 0;
}
#include
#define CUBE(x) (x*x*x)
int main() {
int a, b=3;
a = CUBE(b++);
printf("%d, %d ", a, b);
return 0;
}