int fgetc(FILE * stream); get character from stream 返回流中的一个字符,并以int的类型返回,如果碰到文件的结尾,或者一个错误发生,函数返回EOF,同时相应的错误或eof指示器被设置,可以用ferror或者feof来检查发生一个错误,或者到达了文件的末尾 int getc(FILE * stream); get character from stream; 功能和fgetc一样,只是getc用宏来实现,因此当传递参数时,不应该是一个表达…
2013-07-04 16:45:19 找了很多资料,没有说的很明白的,下面是老外的一篇文章,解释的比较清楚,后面给出翻译. Clarifying stdio.h versus cstdio 转自:http://forums.codeguru.com/showthread.php?344430-Clarifying-stdio-h-versus-cstdio I constantly see recommendations to #include <cstdio> instead of usi…