fgetc
int fgetc(FILE *stream)
注意到参数类型FILE *
,因为这个函数是我们在对文件进行读写操作时常用到的,文件流(即我们所定义的指向文件的指针)。同时还要注意到函数的返回类型int
,参考了其他博主一些文章后总结出来:所以当我们承接返回的值时,为防止读取中断或者其他类型不兼容的问题最好用int
类型的变量。
下面是对fgetc函数的功能的解释:
Fgetc reads a single character from the current position of the specified stream and increments the file pointer to the next character; fgetchar reads from stdin.
我觉得这段英文原文解释得很好,读者可以试着理解一下。
简单来说就是fgetc函数每次从当前的流中(当下指针所指的位置)读取一个字符,返回unsigned char类型后被转换为int.指针指向文件的下一个字符。
常见用法:
int main()
{