std::fgetc, std::getc
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cstdio> 中定义
|
||
int fgetc( FILE *stream ); int getc( FILE *stream ); |
||
从给定的输入流中读取下一个字符。 getc()可以被实现为一个宏.
原文:
Reads the next character from the given input stream. getc() may be implemented as a macro.
[编辑] 参数
stream | - | 从读取的字符
|
[编辑] 返回值
已达到下一个字符从流或EOF如果已发生错误,或文件的末尾.
原文:
Next character from the stream or EOF if an error has occurred or the end of file has been reached.
[编辑] 另请参阅
从stdin读取一个字符的字符串 (函数) | |
将一个字符写入一个文件流 (函数) | |
把一个字符到一个文件流 原文: puts a character back into a file stream (函数) | |
C documentation for fgetc, getc
|