fclose
From cppreference.com
Defined in header <stdio.h>
|
||
int fclose( FILE *stream ); |
||
Closes the given file stream. Any unwritten buffered data are flushed to the OS. Any unread buffered data are discarded.
Whether or not the operation succeeds, the stream is no longer associated with a file, and the buffer allocated by setbuf or setvbuf, if any, is also disassociated and deallocated if automatic allocation was used.
Contents |
[edit] Parameters
stream | - | the file stream to close |
[edit] Return value
0 on success, EOF otherwise
[edit] Example
This section is incomplete Reason: no example |
[edit] See also
opens a file (function) | |
open an existing stream with a different name (function) | |
C++ documentation for fclose
|