在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
功能: feof 是 C 语言标准库函数函数,其原型在 stdio.h 中,其功能是检测流上的文件结束符,如果文件结束,则返回非0值,否则返回0,文件结束符只能被 clearerr() 清除。
用法: int feof(FILE *stream); // *stream(流) :FILE结构的指针
例子:
#include<stdio.h> int main(void) { FILE *stream; /*openafileforreading*/ stream = fopen("DUMMY.FIL", "r"); /*readacharacterfromthefile*/ fgetc(stream); /*checkforEOF*/ if(feof(stream)) printf("We have reached the end of file\n"); /*closethefile*/ fclose(stream); return 0; } 详细解释:百度百科 |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论