gpt4 book ai didi

c - 错误 : ‘outList’ is used uninitialized in this function [-Werror=uninitialized]

转载 作者:太空宇宙 更新时间:2023-11-04 01:59:04 25 4
gpt4 key购买 nike

我正在为我的 C 类入门编写一个程序,当我尝试使用 gcc 进行编译时,我不断收到一些警告。

这是我的代码:

char **outList;
*outList = strdup(cloudDevice);
printf("this is device XML message: %s",*outList);

有什么想法吗?谢谢

最佳答案

它在提示,因为你正在使用一个未初始化的指针,你在他指向任何地方之前引用了 outList

为什么使用 char ** 而不是 char *

char *outList;

outList = strdup(cloudDevice);
printf("this is device XML message: %s", outList);

关于c - 错误 : ‘outList’ is used uninitialized in this function [-Werror=uninitialized],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29656387/

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