gpt4 book ai didi

c - 为什么在 C 语言中退出 do-while 循环请求输入后程序会崩溃?

转载 作者:行者123 更新时间:2023-11-30 19:17:01 24 4
gpt4 key购买 nike

如果一个输入比您想要的长,我无法正确使用 do-while 循环来继续询问另一个字符串。输入太大的字符串后,程序需要另一个字符串,但在我输入可接受的字符串后,程序崩溃而不是正常退出,这是为什么?这只是一个更大程序的代码的一部分。另外,我对 C 还比较陌生。

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

#define STRING_MAX 100

int main()
{
//Declaration of variables
char temp_input[STRING_MAX];

//Read input
do
{
scanf("%s", temp_input);
}while(strlen(temp_input)>STRING_MAX);

return 0;
}

感谢大家的帮助!!

最佳答案

根据评论,我认为这就是您真正想要的

#include <stdio.h>

#define STRING_MAX 10

int main (void)
{
char string[STRING_MAX];
unsigned int count;
unsigned int total;
int chr;

do {
count = 0;
total = 0;
while (((chr = getchar()) != EOF) && (chr != '\n'))
{
if (count < STRING_MAX - 1)
string[count++] = chr;
total += 1;
}
string[count] = '\0';
} while (total > STRING_MAX - 1);
printf("The input string was:\n\t%s\n", string);
return 0;
}

关于c - 为什么在 C 语言中退出 do-while 循环请求输入后程序会崩溃?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28841357/

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