首页 > 代码库 > swap函数

swap函数

#include<stdio.h>
#include<stdlib.h>

int swap(int *p,int *q)
{int t;
t=*p;
*p=*q;
*q=t;}
int main()
{
int a,b;
int *p;
int *q; 
printf("请输入ab值");
scanf("%d,%d",&a,&b);
printf("%d,%d",a,b);
p=&a;
q=&b;
swap(p,q);
printf("%d,%d",p,q);

}

技术分享

增加上课活跃度、

swap函数