问答详情
源自:3-3 自增与自减运算符
为什么运行结果是101
int a=100; printf("%d\n,--a");
提问者:慕粉9336486
2025-10-05 15:04
个回答
慕沐7354188
6天前
int a=100;
printf("a=%d\n",--a);
0