VOOZH about

URL: https://www.geeksforgeeks.org/cpp/buffer-flush-means-c/

⇱ What does buffer flush means in C++ ? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

What does buffer flush means in C++ ?

Last Updated : 20 May, 2024

A buffer flush is the transfer of computer data from a temporary storage area to the computer's permanent memory. For instance, if we make any changes in a file, the changes we see on one computer screen are stored temporarily in a buffer. 
Usually, a temporary file comes into existence when we open any word document and is automatically destroyed when we close our main file. Thus when we save our work, the changes that we've made to our document since the last time we saved it are flushed from the buffer to permanent storage on the hard disk.

In C++, we can explicitly be flushed to force the buffer to be written. Generally, the std::endl function works the same by inserting a new-line character and flushes the stream. stdout/cout is line-buffered that is the output doesn't get sent to the OS until you write a newline or explicitly flush the buffer. For instance,

But there is certain disadvantage something like, 

The above program will output 1 2 3 4 5 at once.

Therefore in such cases, an additional "flush" function is used to ensure that the output gets displayed according to our requirements. For instance, 

The above program will print the 
numbers(1 2 3 4 5) one by one rather than once.
The reason is flush function flushed the output
to the file/terminal instantly.

Note:

  1. You can't run the program on an online compiler to see the difference, since they give output only when it terminates. Hence you need to run all the above programs in an offline compiler like GCC or clang.
  2. Reading cin flushes cout so we don't need an explicit flush to do this.

References:

Related Article : 
Use of fflush(stdin) in C


Comment
Article Tags: