Header: stdio.h
Syntax:
extern int fflush
(
FILE * stream
);
Purpose: This function causes any buffered output data to be written to the file pointed to by stream, but only if the last operation on the file was not input. If stream is a null pointer, flushing occurs on all open streams.
|
|
|