basic concepts c++ | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

basic concepts c++

what is the defintion of "stream" in c++?

24th Sep 2017, 9:50 AM
Bilal Qureshi
Bilal Qureshi - avatar
1 Answer
+ 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).
24th Sep 2017, 9:59 AM
ProCpp