英文: why does the variable become 0 suddenly?(c language) 问题 我练习基本的编程,所以我编写了一段代码来询问用户的姓名,然后我想逐个字符打印用户...
“Malloc给我返回一个不为空的字符串,但我无法将其清空”
英文: Malloc is giving me a string that isn't empty, and I'm unable to empty it 问题 我正在用C语言编写一个...
使用指针与使用索引访问数组的性能差异能否有人解释一下?
英文: Can someone explain to me the performance difference of using pointers vs indices for accessing ...
scanf()为什么在这个程序中忽略了空格后面的部分,以反转字符串?
英文: Why is scanf() ignoring the part after the space in this program to reverse a string? 问题 当我运行这段代...
如何在C中反转数组中的字符串。
英文: how to reverse string in array in C 问题 我已翻译以下代码段: char *problem58() { char temp, *result = (char...
segmentation fault when accessing pointer element
英文: segmentation fault when accessing pointer element 问题 我一直在尝试将一个字符串解析成单独的标记,用于我的项目的命令行界面。我已经创建了这个函...
在C中将长字符串分割为单词
英文: Separating a long string into individual words in C 问题 Sure, here's the translated code portion:...
strtok函数C元素被视为问题
英文: strtok function c element considered problem 问题 当我尝试使用分隔符拆分字符串时,strtok 函数不会考虑空字符串,我想知道如何修复它。 例如,...
字符串字面量根据声明方式不同存储在不同位置。
英文: Why are string literals stored in different places depending on declaration as `char *` or `char...
这为什么不打印字符串?
英文: why does this not print the string? 问题 Here's the translated code without the comments: #include...