fflush() is not working in Linux

前端 未结 9 832
后悔当初
后悔当初 2020-12-08 05:43

I used the fflush() in Linux GCC but it did not work. Are there any alternatives for that function? Here is my code:

#include
void main()
{
           


        
9条回答
  •  孤城傲影
    2020-12-08 06:18

    The behavior of fflush is not defined for input streams (online 2011 standard):

    7.21.5.2 The fflush function

    Synopsis

    1
    
        #include 
        int fflush(FILE *stream);
    
    Description

    2 If stream points to an output stream or an update stream in which the most recent operation was not input, the fflush function causes any unwritten data for that stream to be delivered to the host environment to be written to the file; otherwise, the behavior is undefined.

    3 If stream is a null pointer, the fflush function performs this flushing action on all streams for which the behavior is defined above.

    Returns

    4 The fflush function sets the error indicator for the stream and returns EOF if a write error occurs, otherwise it returns zero.

提交回复
热议问题