gpt4 book ai didi

c - 逐个字符打印字符串

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

下面的代码打印到第 20 个字符,我希望代码在字符串大小超过 20 时打印错误。

    #include<stdio.h>
#include<string.h>
int main()
{
int i = 0, l = 0;
char s[20];
fgets(s, 30, stdin);
l = strlen(s);
if (l < 20)
{
for (i = 0; i < l; i++)
{
printf("%c\n", s[i]);
}
}
else
printf("Length of the String exceeds the limit.");
}

最佳答案

如果有人输入超过 19 个字符,您的代码将包含未定义的行为。这是因为 char s[20] 保留了 20 个字符(包括字符串终止符 '\0')。因此,使用 fgets(s,30,stdin) 读取超过 20 个字符可能会导致几乎任何问题,包括在程序的其余部分中输​​入“错误”路径。

尝试 char s[30] 并再次测试您的代码。

关于c - 逐个字符打印字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44429527/

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