1、c=a; a=1,b=2,c=1;2、if (c=a) == if (1)赋值语句返回值为为被赋的值(a)3、if (1) printf("%d%\n", c); 输出c的值 1ps:c=a是赋值语句 c==a才是关系运算符