iostream
iostream is a header in the C++ standard library that provides facilities for input and output through streams. It declares the standard stream objects used for console I/O and defines the core streaming interfaces that enable formatted communication between programs and their I/O devices.
Standard streams defined in iostream include std::cin for input, std::cout for output, std::cerr for error reporting,
The header also supports formatting control through stream state, flags, and manipulators. Typical usage involves sending
Implementations of iostream are part of the C++ standard library and are designed to be portable across