gpt4 book ai didi

c - 为什么 scanf 看起来会改变 char* 的行为?

转载 作者:行者123 更新时间:2023-11-30 18:50:20 27 4
gpt4 key购买 nike

我有以下代码,我很难理解它为什么会这样工作:

char* str = "HELLO";
printf("%s",&str[0]); //Returns Hello as expected
printf("%c",str[2]); //Returns L as aspected
scanf("%s",&str); //I enter aaaa
printf("%s\n",&str); /* If I want to access the word I have to do this way
&str[0] now gives a segmentation fault.*/
printf("%c\n",&str[1]); /*This gives a b???!!!. I haven't found any way to
access individual character with *str.*/

我特别感兴趣的是为什么看起来无法访问单个字符,尽管在某种程度上这是有道理的,毕竟你应该声明一个指向 char 的指针,我想知道它是如何工作的以某种方式的字符串。但我想知道为什么第一个按预期作为字符数组工作,而不是第二个。

谢谢。

最佳答案

scanf("%s",&str); 调用未定义的行为:您要求 scanf 读取字符串并将其存储到 str 的位置 指针本身,而不是它指向的位置,它是一个字符串文字,也不应该被修改。

关于c - 为什么 scanf 看起来会改变 char* 的行为?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40392294/

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