C++ Programming/Code/Standard C Library/Functions/ferror

From Wikibooks, open books for an open world
Jump to navigation Jump to search

ferror[edit | edit source]

Syntax
#include <cstdio>
int ferror( FILE *stream );

The ferror() function looks for errors with stream, returning zero if no errors have occurred, and non-zero if there is an error. In case of an error, use perror() to determine which error has occurred.

Related topics
clearerr - feof - perror