This header is part of the Input/output library.
Includes | |
<ios> | (since C++11) |
<streambuf> | (since C++11) |
<istream> | (since C++11) |
<ostream> | (since C++11) |
Objects | |
std::cin | standard input |
std::cout | standard output |
std::cerr | standard error |
std::clog | standard log |
std::wcin | standard input |
std::wcout | standard output |
std::wcerr | standard error |
std::wclog | standard log |
Synopsis
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #include <ios> #include <streambuf> #include <istream> #include <ostream> namespace std { extern istream cin; extern ostream cout; extern ostream cerr; extern ostream clog; extern wistream wcin; extern wostream wcout; extern wostream wcerr; extern wostream wclog; } |
Please login to continue.