Header Reference: <istream>
Header Reference: <istream>
Formatted and unformatted input stream interfaces, extraction behavior, and input-state handling from <istream>.
Header Reference: <istream>
Formatted and unformatted input stream interfaces, extraction behavior, and input-state handling from <istream>.
Use reference pages to confirm names, categories, nearby facilities, and the constraints that matter before writing or reviewing code.
Header reference pages are meant to answer a practical question quickly: what this header provides, when to reach for it, and which usage rules are easiest to get wrong.
<istream>std::istreamread, get, getline, ignore, peekUse <istream> when code needs generic input-stream interfaces independent of the concrete source.
#include <istream>
int main() {
// Pair stream types with state checks and explicit formatting rules.
return 0;
}