C Plus Plus iostream
From GMpedia.org Wiki
The iostream (I/O Stream) in C++ is the stream that initializes the Input/Output functions of C++. To initialize iostream, an include must be called that includes iostream in C++ File. Without it, no program could perform any input or output!
[edit] Initializing I/O Stream
To start iostream, in the beginning of the C++ File, enter this line of code:
#include <iostream>
[edit] What does it provide?
The include of iostream will allow the user to use simple commands like std::cout and std::cin..

