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

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

fclose[edit | edit source]

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

The function fclose() closes the given file stream, deallocating any buffers associated with that stream. fclose() returns 0 upon success, and EOF otherwise.

Related topics
fflush - fopen - freopen - setbuf