Which operator is used to create the user-defined streams in c++?
<<
>>
Both >> and <<
&
None of these
Correct Option: C
We can make user-defined types with streams by overloading the insertion operator (<<) to put objects into streams and the extraction operator (>>) to read objects from streams.