Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

How to flush the cout buffer in Visual C++


Summary

In an application developed with Microsoft C/C++, the cout stream is buffered. In other words, information sent to the cout stream does not appear on the screen until its buffers are flushed. For Visual C++ 4.2 and later versions, this behavior only occurs when using the old iostream libraries. There are four methods to flush the cout buffer, as follows:
  • Use the endl manipulator to insert a newline character into the output stream and flush the buffer. Use the insertion operator with the endl manipulator, as follows:
    cout << ... << endl;
  • Use the flush member function in the ostream class or the flush manipulator. The flush manipulator does not insert a newline character into the stream before it flushes the buffer. To call the flush member function, use code similar to the following:
    cout.flush();
    Use the insertion operator with the flush manipulator as follows:
    cout << ... << flush;
  • Read from the cin stream or write to the cerr or clog streams. Because these objects share the buffer with cout, each flushes the contents of the buffer before making any changes to it.
  • Exit the program to flush all buffers currently in use.

↑ Back to the top


More Information

Because cout is buffered, text that the application creates is not immediately displayed on the screen. In some circumstances, this behavior might be misinterpreted as an error in cout. For an example of an application that determines when to flush the cout buffer, see pages 377- 378 of the Microsoft C/C++ "Class Libraries User's Guide" for version 7.0.


For more information about flushing the cout stream with the endl manipulator, click the following article number to view the article in the Microsoft Knowledge Base:

↑ Back to the top


Keywords: kbvcpp2005rtmsweep, kbvcpp2005rtmapplies, kbvc600wrapup, kbvc600applies, kbdsupport, kbinfo, kblangcpp, kbbillprodsweep, kb

↑ Back to the top

Article Info
Article ID : 94227
Revision : 4
Created on : 6/10/2019
Published on : 6/10/2019
Exists online : False
Views : 240