main() { int a=10,b=20; s(&a,&b); printf("a=%d,b=%d",a,b); } s(px,py) { int *px,*py,temp; temp=*px;*px=*py;*py=temp; }