A-A+

What will be the output of the follow C code? #define product(x) (x*x) main() { int

2020-09-18 20:46:56 资格考试 阅读

问题详情

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);

}

请帮忙给出正确答案和分析,谢谢!

参考答案

题库:
考点: