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;
}
輸出
相關用法
- C語言 feof()用法及代碼示例
- C語言 fread()用法及代碼示例
- C語言 fillellipse()用法及代碼示例
- C語言 fgets()用法及代碼示例
- C語言 freopen()用法及代碼示例
- C語言 frexp()用法及代碼示例
- C語言 fclose()用法及代碼示例
- C語言 fseek() vs rewind()用法及代碼示例
- C語言 fflush()用法及代碼示例
- C語言 fgetc()用法及代碼示例
- C語言 fputc()用法及代碼示例
- C語言 fputs()用法及代碼示例
- C語言 fillpoly()用法及代碼示例
- C語言 ftell()用法及代碼示例
- C語言 fseek()用法及代碼示例
- C語言 fgets() and gets()用法及代碼示例
- C語言 fscanf()用法及代碼示例
- C語言 fgetc() and fputc()用法及代碼示例
- C語言 fwrite()用法及代碼示例
- C語言 fork()用法及代碼示例
注:本文由純淨天空篩選整理自Souvik Saha大神的英文原創作品 ferror() function in C language with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。