ex25.cpp
资源名称:VC6.0.rar [点击查看]
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:0k
源码类别:
书籍源码
开发平台:
Visual C++
- #include <iostream.h>
- void swap(int *p1,int *p2) //函数定义
- {
- int t;
- t=*p1;
- *p1=*p2;
- *p2=t;
- }
- void main()
- {
- int x=3,y=4;
- swap(&x,&y); //取x和y的地址,分别赋值给p1和p2
- cout<<"x="<<x<<endl; //输出4
- cout<<"y="<<y<<endl; //输出3
- }