填空题

main() { int x=1;y; y=x++: printf("y=%d",y); int z; z=++x: printf("z=%d\n",z); 错误:______ 改正:______

【参考答案】

错误:int x=1;y;