如何读取C中的文本行
我需要从文本文件中获取行。我已经知道每行的长度不会超过 70 个字符。
我有一个关于如何做到这一点的想法,但我正在寻找一个标准解决方案。
I need to get lines from a text file. I already know that the lines won't be longer than 70 chars.
I have an idea about how to do it, but I'm looking a standard solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许是这样的?
Maybe something like this ?
不要忘记,如果您正在读取文件,则需要有一个文件指针并指示您想对文件执行什么操作。即 r ->读,w->写。所以看来您想读取该文件。
所以......
这从命令行获取文件input.txt,将其放入字符缓冲区中,打印它,然后重复直到文件末尾。
干杯
Don't forget that if you're reading in a file you need to have a file pointer and indicate what you want to do with the file. i.e. r -> read, w-> write. So it looks like you want to read the file.
So.....
This takes in the file input.txt from the command line, puts it in the char buffer, prints it, and repeats until end of file.
Cheers