Name the stream insertion operator in c++
Answers
Answered by
0
Answer:
cin>>
explanation:
In C++, stream insertion operator “<<” is used for output and extraction operator “>>” is used for input.
We must know following things before we start overloading these operators.
1) cout is an object of ostream class and cin is an object istream class
2) These operators must be overloaded as a global function.
Similar questions