當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。