gpt4 book ai didi

c - 发送字符串作为参数时出现段错误

转载 作者:行者123 更新时间:2023-11-30 20:16:53 24 4
gpt4 key购买 nike

我正在尝试编写一个将字符串转换为莫尔斯电码的程序。目前,只要输入是字符串文字,它就可以正常工作,但每当我将字符串作为变量发送时,就会出现段错误。

void morseCode(char* s)
{
for (int i = 0; s[i]!='\0'; i++)
printf("%s",morseEncode(s[i])); //morseEncode is a function which returns char* of morse code
}


int main()
{
int length = strlen("Hello");
char* s = (char*) malloc(length + 1);
s = "Hello";

morseCode(s); // Segmentation fault
morseCode("Hello"); // works fine
return 0;
}

最佳答案

这是将变量 s 传递给 morseEncode (可能会修改它)的结果,因为修改 sundefined behaviour 。具体来说,以这种方式修改字符串文字是 6.4.5p6 [来自 C99:TC3] 的未定义行为

It is unspecified whether these (string literal) arrays are distinct provided their elements have the appropriate values. If the program attempts to modify such an array, the behavior is undefined.

(括号内的文字是我添加的)

您可能还想查看this question .

您可以像这样声明s(具有自动存储持续时间)。

char s[] = "Hello";

如果您需要 s 作为指针,您可以尝试

// Yes, sizeof(char) will always be 1 and you could remove it.
char *s = malloc(sizeof(char) * (strlen("Hello") + 1));
strcpy(s, "Hello");

// Your code that uses s here

free(s) // Important!
<小时/>

作为附加说明,@kaylum 指出,原始答案没有提供理由来说明为什么以两种不同的方式调用该函数会产生不同的结果。这是因为您遇到的未定义行为恰好是每次调用以不同的方式未定义的。如果我写出一个类似的程序并使用 gcc (没有标志)编译它,我最终都会遇到段错误;另一方面,使用 clang -O 编译都可以!它只是您的特定编译器决定放置每个字符序列的任何内存段的产物。

关于c - 发送字符串作为参数时出现段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59538774/

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