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,10
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。