标签:函数 oid 指针函数 return clu wap after for 地址
#include <stdio.h>
void swap(int *x,int *y);
int main()
{
int m,n;
scanf("%d%d",&m,&n);
printf("before swap:m=%d n=%d\n",m,n);
swap(&m,&n); //注意引用函数,两个值前用地址符。
printf("after swap:m=%d n=%d\n",m,n);
return 0;
}
void swap(int *x,int *y)
{
int temp;
temp=*x;
*x=*y;
*y=temp;
}
标签:函数 oid 指针函数 return clu wap after for 地址
原文地址:https://www.cnblogs.com/DEAKY/p/11914913.html