Functions HI-TECH C FFLUSH

Revision as of 19:34, 31 July 2017 by Kumokosi (talk | contribs) (Created page with "<strong>FFLUSH</strong> ==SYNOPSIS== #include <stdio.h> int fflush(FILE * stream) ==DESCRIPTION== <strong>Fflush</strong>() will output to the disk file or other dev...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

FFLUSH

SYNOPSIS

#include  <stdio.h>

int fflush(FILE * stream)


DESCRIPTION

Fflush() will output to the disk file or other device currently open on the specified stream the contents of the associated buffer. This is typically used for flushing buffered standard output in interactive applications.

SEE ALSO

fopen, fclose