iostream

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;
  
}
doc_CPP
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.