#include <stdio.h>
func(int a,int b)
{
int temp=a;
a=b; b=temp;
}
main()
int x,y;
x=10;y=20;
func(x,y);
printf("%d,%d\n",x,y);
JustWannaHugU
杜发明
相关分类