gpt4 book ai didi

c - 如何从 char** 获取 char*

转载 作者:太空狗 更新时间:2023-10-29 15:10:03 24 4
gpt4 key购买 nike

我理解 & 用于引用对象的地址,所以 &char* = char**。有什么方法可以扭转这一局面,以便我可以从 char** 获取 char*

所以我有:

char** str; //assigned to and memory allocated somewhere

printf ("%s", str); //here I want to print the string.

我该怎么做?

最佳答案

您可以使用 dereference operator .

取消引用运算符 对指针变量进行操作,并返回与指针地址处的值等效的左值。这称为“取消引用”指针。

char** str; //assigned to and memory allocated somewhere

printf ("%s", *str); //here I want to print the string.

关于c - 如何从 char** 获取 char*,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4166652/

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