fflush()

Syntax:

#include <stdio.h>
int fflush( FILE *stream );



Description:
If the given file stream is an output stream, then fflush() causes the output buffer to be written to the file. If the given stream is of the input type, then fflush() causes the input buffer to be cleared. fflush() is useful when debugging, if a program segfaults before it has a chance to write output to the screen. Calling fflush( STDOUT ) directly after debugging output will ensure that your output is displayed at the correct time.

Example:

|printf|( "Before first call\n" );
fflush( STDOUT );
shady_function();
printf( "Before second call\n" );
fflush( STDOUT );
dangerous_dereference();



Related Topics:
fclose(), fopen(), fread(), fwrite(), getc(), putc()

Vadim avatar

Vadim