C语言中的fflush函数

来源:互联网 发布:淘宝服装店推广 编辑:程序博客网 时间:2024/05/18 04:00
fflush

Flushes a stream.

int fflush( FILE *stream );

Return Value

fflush returns 0 if the buffer was successfully flushed. The value 0 is also returned in cases in which the specified stream has no buffer or is open for reading only. A return value of EOF indicates an error.

Parameter

stream

Pointer to FILE structure

Remarks

The fflush function flushes a stream. If the file associated with stream is open for output, fflush writes to that file the contents of the buffer associated with the stream. If the stream is open for input, fflush clears the contents of the buffer. fflush negates the effect of any prior call to ungetc against stream. Also, fflush(NULL) flushes all streams opened for output. The stream remains open after the call. fflush has no effect on an unbuffered stream.

Buffers are normally maintained by the operating system, which determines the optimal time to write the data automatically to disk: when a buffer is full, when a stream is closed, or when a program terminates normally without closing the stream. The commit-to-disk feature of the run-time library lets you ensure that critical data is written directly to disk rather than to the operating-system buffers. Without rewriting an existing program, you can enable this feature by linking the program’s object files with COMMODE.OBJ. In the resulting executable file, calls to _flushall write the contents of all buffers to disk. Only _flushall and fflush are affected by COMMODE.OBJ.

Example

/* FFLUSH.C */#include <stdio.h>#include <conio.h>void main( void ){   int integer;   char string[81];   /* Read each word as a string. */   printf( "Enter a sentence of four words with scanf: " );   for( integer = 0; integer < 4; integer++ )   {      scanf( "%s", string );      printf( "%s\n", string );   }   /* You must flush the input buffer before using gets. */   fflush( stdin );   printf( "Enter the same sentence with gets: " );   gets( string );   printf( "%s\n", string );}

Output

Enter a sentence of four words with scanf: This is a testThisisatestEnter the same sentence with gets: This is a testThis is a test
原创粉丝点击