分析下列程序的输出结果
void main()
{
int x,y; x=18; y=16; y=x=y; printf("%d\n",y);
}
y=x=y;从右到左依次赋值等价于x=y;y=x;会了吗