stdio文件函数详解(5)
发布时间:2021-06-07
发布时间:2021-06-07
stdio文件常用函数
@函数名称: ferror
函数原型: int ferror(FILE *stream)
函数功能: 检测文件操作是否有错误
函数返回: 非0-有错误,0-无错误
参数说明: stream-文件指针
所属文件: <stdio.h>
#include <stdio.h>
int main()
{
FILE *stream;
stream=fopen("DUMMY.dat","w");
(void) getc(stream);
if (ferror(stream))
{
printf("Error reading from DUMMY.dat")
clearerr(stream);
}
fclose(stream);
return 0;
}
上一篇:第三章 网络危机的应对策略