#include <stdio.h>
int main(){
int a=1,b=3,c=3;
printf("%d, %d, %d",(a++,b++,c++),b,c);
return 0;
}
output:3,4,4
逗号运算符,从左至右运算,并取最后一个的值.
a++:1 (a=2) b++:3 (b=4) c++:3 (c=4) ,不妨设第一项为x,那么x=c++=3,再从右至左压入栈内,入栈顺序为:c,b,x
时间: 2024-09-30 20:55:26
#include <stdio.h>
int main(){
int a=1,b=3,c=3;
printf("%d, %d, %d",(a++,b++,c++),b,c);
return 0;
}
output:3,4,4
逗号运算符,从左至右运算,并取最后一个的值.
a++:1 (a=2) b++:3 (b=4) c++:3 (c=4) ,不妨设第一项为x,那么x=c++=3,再从右至左压入栈内,入栈顺序为:c,b,x