c语言改错题

2024-12-30 04:37:04
推荐回答(3个)
回答1:

#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;
}

回答2:

swap(int *p, int *q)
{
int t;
t = *p;
*p = *q;
*q = t;
}

回答3:

void swap(int *p,int *q)
{
int t;
t=*p;*p=*q;*q=t;
}