What are different operators dealing with streams?
Answers
Answered by
9
The stream insertion and stream extraction operators also can be overloaded to perform input and output for user-defined types like an object.
Thanks Answer Please
Answered by
0
Answer:
1. INSERTION OPERATOR (<<)
2. EXTRACTION OPERATOR(>>)
Explanation:
operators dealing with streams are-
1. INSERTION OPERATOR (<<)
also called as put to operator
associated with output stream
eg:- cout <<a;
2. EXTRACTION OPERATOR(>>)
also called as get from operator
associated with input stream
eg:- cin >>a;
Similar questions