-

Difference between revisions of "Functions HI-TECH C FFLUSH"

From HI-TECH C for CP/M Fan WIKI(EN)
Jump to: navigation, search
(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...")
 
(No difference)

Latest revision as of 19:34, 31 July 2017

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