0
What is a standard stream object?
New to C++
2 Answers
+ 5
In a river stream there is an endless flow of water.
A stream object behaves much the same as you can input or output as much as you want to it or from it.
IO Streams will provide you with objects which you can insert << or extract >> from. You work with streams in the same way whether they are set up e.g. towards a file or the console.
0
thank you đ