注意:此页面搜索的是所有试题
下面程序的输出结果是 ( )。
mian()
{int x=2,y=0,z;
x*=3+2; printf(“%d”,x);
x*=y=z=4; printf(“%d”,x);
}

参考答案