gpt4 book ai didi

c - 在 C 中,字符串给我有关初始化丢弃限定符的警告

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

我的两行代码收到以下警告。

initialization discards qualifiers from pointer target type

这两行是警告的来源。

function (const char *input) {
char *str1 = input;
char *str2 = "Hello World\0";
}

我认为第一行出错,因为我试图将 const char* 分配给 char*。我该如何解决?

最佳答案

你需要声明它为常量:

const char *str1 = input;

关于c - 在 C 中,字符串给我有关初始化丢弃限定符的警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9026745/

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