下面程序的输出结果是 ( )。
mian()
{int x=2,y=0,z;
x*=3+2; printf(“%d”,x);
x*=y=z=4; printf(“%d”,x);
}
出自:商丘师范学院-C语言程序设计