gpt4 book ai didi

c - 保存变量的地址

转载 作者:行者123 更新时间:2023-11-30 21:34:34 27 4
gpt4 key购买 nike

我想以干净的方式保存变量的地址,这样就不会出现编译器错误或警告。
我有这样的东西:

unsigned int a = 5;
unsigned int address = (unsigned int)&a;

但我收到一些编译器警告。如果我写

unsigned int address = &a;

这也是错误的方式。那么什么是干净的方法(对于 32 位架构,不需要在 64 位平台上运行),并且不使用标准库!!

最佳答案

你可以在c中使用指针,它应该是这样的

int *address = &a;

关于c - 保存变量的地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26670006/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com