C++ Programming/Code/Standard C Library/Functions/fclose
< C++ Programming < Code < Standard C Library < Functionsfclose
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.
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.