#include <bits/c++config.h>#include <ostream>#include <istream>Include dependency graph for iostream:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Namespaces | |
| namespace | std |
Defines | |
| #define | GLIBCXXIOSTREAM |
Variables | |
| static ios_base::Init | std::__ioinit |
Standard Stream Objects | |
The <iostream> header declares the eight standard stream objects. For other declarations, see http://gcc.gnu.org/onlinedocs/libstdc++/27_io/howto.html#10 and the I/O forward declarations
They are required by default to cooperate with the global C library's | |
| istream | std::cin |
| Linked to standard input. | |
| ostream | std::cout |
| Linked to standard output. | |
| ostream | std::cerr |
| Linked to standard error (unbuffered). | |
| ostream | std::clog |
| Linked to standard error (buffered). | |
include this header in your programs, rather than any of the "st[dl]_*.h" implementation files.
Definition in file iostream.
1.5.1