gpt4 book ai didi

我可以使用下面的代码还是不正确的?

转载 作者:行者123 更新时间:2023-11-30 18:39:09 25 4
gpt4 key购买 nike

首先我使用的是 c 语言,但我还是个初学者。

char S[20];
S ="ewer" ;

这是正确的吗?

最佳答案

数组(包括字符串)不能在 C 中赋值。对于字符串,您需要 strcpy ,或者最好strncpy :

#include <string.h>

...

char S[20];

strcpy(S, "ewer"); // strcpy is fine for this example

strncpy(S, "ewer", sizeof(S)); // strncpy is safer in general and
// should be preferred over strcpy

关于我可以使用下面的代码还是不正确的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30861294/

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