gpt4 book ai didi

C语言: Change the contents of a string array

转载 作者:行者123 更新时间:2023-11-30 20:56:42 25 4
gpt4 key购买 nike

我在更改保存字符串的变量的内容时遇到问题。与 int 相比,我可能过于字面地考虑了这一点,而不是作为数组。也许必须先刷新数组?非常感谢。

// declare with maximum size expected +1 (for terminator 0)
char myString1[20] = "Hello"; //declare and assign one line - OK
myString1[20] = "Hello Longer"; // change contents - fails
myString1[] = "Hello Longer"; // change contents - fails
myString1 = "Hello Longer"; // change contents - fails

最佳答案

这是 C,而不是负责为您复制字符串的面向对象语言。您需要使用string 库。例如:

char myString1[20] = "Hello";
strncpy(myString1, "Hello Longer", 20);

关于C语言: Change the contents of a string array,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21683119/

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