cplusplus-primer-5ed-notes/part_ii/chap8_the_io_library.md

11 lines
360 B
Markdown
Raw Permalink Normal View History

2020-10-17 09:25:58 +11:00
# Chapter 8. The IO Library
* C++ use various types in std IO libraries to handle IO.
List of C++ classes to handle IO:
* `istream` (input stream) type, for input operations
* `ostream` (output stream) type, for output operations
* `cin` (an `istream` obj) reads std input
* `cout`
* `cerr` (an `ostream` obj) for program error messages, writes to std error