1 Star 0 Fork 0

心爱而唯专/CppGiteeRepository

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
VariableAddressSwapper.c 693 Bytes
一键复制 编辑 原始数据 按行查看 历史
心爱而唯专 提交于 2020-03-13 14:29 . 变量地址互换案例

#include <iostream>
#include <malloc.h>
using namespace std;
#include <string.h>
/* 常量 */
#define MAX 3
/* 函数声明 */
void swapAddressByPoint(int *a, int *b);
int main(){
int a = 1;
int b =2;
swapAddressByPoint(&a, &b);
cout << "\n\t'a':" << a << "\t'b'" << b << endl;
}
void swapAddressByPoint(int *a, int *b){
int *temp = (int*)malloc(sizeof(int));
cout << "initialize malloc address for 'temp' (which) is:" << temp << "\n";
temp = a;
cout << "swap from variable 'a' point, now address for 'temp' (which) is:" << temp << "\n";
a = b;
b = temp;
cout << "swap address both 'a' point and 'b' point, now address for 'a' is:" << a << "\tand 'b' is" << b << endl;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/Haven69Ansin/CppGiteeRepository.git
git@gitee.com:Haven69Ansin/CppGiteeRepository.git
Haven69Ansin
CppGiteeRepository
CppGiteeRepository
master

搜索帮助