Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为任天堂 ds 编写 c++ 代码,并且必须使用“FILE”类型来访问文本文件。所以我正在使用 fgets 来查看文本文件的内容,但除了第一行之外,我看不到任何查看文档内容的方法。
是否有另一个命令可以做这样的事情,或者有没有办法让 fgets 读取不同的行?
Fgets 将从您所在的 FILE 位置读取。当你使用它时,它会读取一行并且位置现在在下一行。因此,如果您继续调用它,它将为您提供所有线路。当到达 EOF 时,它将返回该点的行,随后的调用将返回 NULL。