关于增量运算符的优先级
按照《c primer》所说:增量和减量运算符具有很高的结合优先级,只有圆括号比它们的优先级高。所以,x*y++代表(x)*(y++)而不是(x*y)++。幸亏后者无效。但我运行的结果为什么不一致。
#include <stdio.h>
#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main()
{
int x,y,z;
x=2,y=3;
z=x*y++;
printf("%d",z) ;
return 0;
}