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

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

clearerr[edit | edit source]

Syntax
#include <cstdio>
void clearerr( FILE *stream );

The clearerr function resets the error flags and EOF indicator for the given stream. If an error occurs, you can use perror() or strerror() to figure out which error actually occurred, or read the error from the global variable errno.

Related topics
feof - ferror - perror - strerror