Go back to Richel Bilderbeek's homepage.
Go back to Richel Bilderbeek's C++ page.
std::endl is an output stream modifier to go to the next line and flush the stream's buffer.
#include <iostream< |
The code above is equivalent to the code below [1]:
#include <iostream< |
One does not need to flush the std::cout buffer after every output [1].
Go back to Richel Bilderbeek's C++ page.
Go back to Richel Bilderbeek's homepage.