main{intx=20,y=10,*p;p=x;printf(″%d,″,*p);*p=x+10;p=y;printf(″%d\n″,*p);*p=y+20;printf(″%d,%d\n″,x,y);}输出结果为?
20,1030,30
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。