当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C语言 ferror()用法及代码示例


C 中的 ferror() 函数

原型:

    int ferror(FILE *filename);

参数:

    FILE *filename

返回类型:整数(0 或 1)

函数的使用:

如果在最后一次文件操作中该文件中引入了一些错误,则通过 ferror() 函数我们可以识别在最后一次操作期间该文件中存在一些错误。 ferror() 函数的原型是int ferror(FILE* filename);

但是只检测文件的最后一次操作错误,因为每次都设置文件的错误标志。

C 中的 ferror() 示例

#include <stdio.h>
#include <stdlib.h>

int main()
{
    FILE* f;
    char str[100];

    //Check the existence of that file
    if ((f = fopen("includehelp.txt", "r")) == NULL) {
        printf("Cannot open the file...");
        //if not exist program is terminated
        exit(1);
    }

    // Check if here is some error in the file
    if (ferror(f))
        printf("Error to read the file\n");
    else
        printf("No error in reading\n");

    printf("File content is--\n");
    //print the strings until EOF is encountered
    while (!feof(f)) {
        fgets(str, 100, f);
        //print the string
        printf("%s", str);
    }

    //close the opened file
    fclose(f);

    return 0;
}

输出

ferror example in c



相关用法


注:本文由纯净天空筛选整理自Souvik Saha大神的英文原创作品 ferror() function in C language with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。