#include"stdio.h"void main (){int a=1, b=2,c=3;if(a=c) printf ("%d\n",c) ;else printf ("%d\n",b) ;
}
a=c是赋值语句,为真,所以走if语句,输出c,也就是3