gpt4 book ai didi

c - getchar() 并逐行读取

转载 作者:行者123 更新时间:2023-12-04 03:13:26 25 4
gpt4 key购买 nike

对于我的一个练习,我们需要逐行阅读并仅使用 getchar 和 printf 输出。我正在关注 K&R,其中一个示例显示了使用 getchar 和 putchar。根据我的阅读,getchar() 一次读取一个字符,直到 EOF。我想要做的是一次读取一个字符,直到行尾,但将写入的所有内容存储到 char 变量中。因此,如果输入 Hello, World!,它也会将其全部存储在一个变量中。我尝试使用 strstr 和 strcat 但没有成功。

while ((c = getchar()) != EOF)
{
printf ("%c", c);
}
return 0;

最佳答案

您将需要多个字符来存储一行。使用例如一个字符数组,如下所示:

#define MAX_LINE 256
char line[MAX_LINE];
int c, line_length = 0;

//loop until getchar() returns eof
//check that we don't exceed the line array , - 1 to make room
//for the nul terminator
while ((c = getchar()) != EOF && line_length < MAX_LINE - 1) {

line[line_length] = c;
line_length++;
//the above 2 lines could be combined more idiomatically as:
// line[line_length++] = c;
}
//terminate the array, so it can be used as a string
line[line_length] = 0;
printf("%s\n",line);
return 0;

有了这个,你就不能读取超过固定大小(在本例中为 255)的行。 K&R 稍后会教你动态分配内存,你可以用它来读取任意长的行。

关于c - getchar() 并逐行读取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4909009/

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