- 1
basic concepts c++
what is the defintion of "stream" in c++?
1 Antwort
+ 1
A stream is an abstraction on which you perform I/O operations.
For streams, several i/o functions have been defined in C++, like console stream (istream/ostream), file stream (ifstream/ofstream) and string stream (istringstream/ostringstream).