#include
main()
{int a=10,b=20;
printf("%d %d\n",a,b);
swap(&a,&b);
printf("%d %d\n",a,b);
}
swap(int *p,int *q)
{
int t;
t=*p;*p=*q;*q=t;
}
swap(int *p, int *q)
{
int t;
t = *p;
*p = *q;
*q = t;
}
void swap(int *p,int *q)
{
int t;
t=*p;*p=*q;*q=t;
}