What will be the output of the follow C code? #define product(x) (x*x) main() { in What will be the output of the follow C code?#define product(x) (x*x)main(){int i = 3, j, k;j = product(i++);k = product(i);printf("%d %d",j,k);} 参考答案 查看答案