#include
main()
{
int x=10,y=3,z;
printf("%d\n",z=(x%y,x/y));
printf("%d\n",z=x%y,x/y);
}
/*
逗号表达式求解过程:从左到右依次求解
逗号运算符优先级低于赋值运算符
赋值运算符优先级低于()
*/
#include
main()
{
int x=10,y=3,z;
printf("%d\n",z=(x%y,x/y));
printf("%d\n",z=x%y,x/y);
}
/*
逗号表达式求解过程:从左到右依次求解
逗号运算符优先级低于赋值运算符
赋值运算符优先级低于()
*/