下列程序的运行结果是____________________。 #include
void swap(int x,int y) { int temp; temp=x;x=y;y=temp; printf( "in swap x=%d,y=%d\n",x,y); } void main() { int a=5,b=10; printf("before swap a=%d,b=%d\n",a,b); swap(a,b); printf("after swap a=%d,b=%d\n",a,b); }