getchar() 并逐行读取
对于我的练习之一,我们需要逐行读取并仅使用 getchar 和 printf 进行输出。我正在关注 K&R,其中一个示例显示了如何使用 getchar 和 putchar。据我了解,getchar() 一次读取一个字符,直到 EOF。我想要做的是一次读取一个字符,直到行尾,但将写入 char 变量的任何内容存储起来。因此,如果输入 Hello, World!,它也会将其全部存储在一个变量中。我尝试使用 strstr 和 strcat 但没有成功。
while ((c = getchar()) != EOF)
{
printf ("%c", c);
}
return 0;
For one of my exercises, we're required to read line by line and outputting using ONLY getchar and printf. I'm following K&R and one of the examples shows using getchar and putchar. From what I read, getchar() reads one char at a time until EOF. What I want to do is to read one char at a time until end of line but store whatever is written into char variable. So if input Hello, World!, it will store it all in a variable as well. I've tried to use strstr and strcat but with no sucess.
while ((c = getchar()) != EOF)
{
printf ("%c", c);
}
return 0;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将需要多个字符来存储一行。使用例如字符数组,如下所示:
这样,您就无法读取超过固定大小(本例中为 255)的行。 K&R 稍后将教您动态分配内存,您可以使用它来读取任意长的行。
You will need more than one char to store a line. Use e.g. an array of chars, like so:
With this, you can't read lines longer than a fixed size (255 in this case). K&R will teach you dynamically allocated memory later on that you could use to read arbitarly long lines.