函数 交换两个数
#include<stdio.h>void swap(int *a,int *b)//傳地址相當于傳了真值
{int temp;//而傳值在函數結束時銷毀temp=*a;*a=*b;*b=temp;
}
void main()
{int a=2,b=3;swap(&a,&b);printf("a=%d, b=%d",a,b);
}
轉載于:https://www.cnblogs.com/xzenith/p/3633435.html
總結
- 上一篇: iOS8电话短信技巧:发送视频短信
- 下一篇: 查看端口常用命令以及关闭端口的方法