gpt4 book ai didi

c - 未知的错误字符被添加到字符串中?

转载 作者:太空宇宙 更新时间:2023-11-04 05:56:38 25 4
gpt4 key购买 nike

我正在学习 C。某些字符会自动添加到我的程序中。我做错了什么?

#include <stdio.h>
#include <string.h>

int main() {
char test1[2]="xx";
char test2[2]="xx";
printf("test is %s and %s.\n", test1, test2);
return 0;
}

这是我在 Fedora 20 上运行它的方式。

gcc -o problem problem.c
./problem
test is xx?}� and xx@.

我希望答案是test is xx and xx

最佳答案

问题是字符串字面量如"xx" 有一个额外的字符,它是nul-termination,\0,也就是说,它由字符 'x''x''\0'

这就是采用 char* 并将其视为字符串的函数如何知道字符串的范围。您的数组只是一个元素太短,缺少 null 终止符。通过将不指向以 nul 结尾的字符串的 char* 传递给期望以 nul 结尾的字符串的函数,您将调用未定义的行为

您可以像这样初始化它们:

char test[] = "xx";

这将导致 test 具有正确的长度 3。您可以使用 sizeof 运算符对其进行测试。当然,你也可以明确指定长度:

char test[3] = "xx";

但是这样更容易出错。

关于c - 未知的错误字符被添加到字符串中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26347921/

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