gpt4 book ai didi

c - 地址到字符串常量

转载 作者:太空宇宙 更新时间:2023-11-04 06:42:23 24 4
gpt4 key购买 nike

我从汇编程序中得到一个字符串地址到 C 中,我需要得到这个地址的内容。怎么做? Google 提供了带有 reinterpret_cast 的 C++ 示例,但它在 C 中不起作用(我想)。如果您也注意到需要的库,我将不胜感激,tenx

#include <stdio.h> 
#include <stdlib.h>

unsigned long const1(void);

int main()
{
printf("Const: %d\n", const1());
return 0;
}

最佳答案

如果您已经获得地址并且您知道它是一个以 null 结尾的字符串,那么您需要做的就是将其视为一个字符串。

printf("%s", (char*)alleged_string_address);

关于c - 地址到字符串常量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5956990/

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