免费注册 手机版 网站地图 小工具

学而优·知识库

首 页
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);
}
参考答案

关闭

前往注册

我已注册,登录账号 继续查看答案