Which operator is used to create the user-defined streams in c++?

a) >>
b) <<
c) &
d) Both >> & <<

1 thought on “Which operator is used to create the user-defined streams in c++?”

  1. d
    Explanation: We can make user-defined types with streams by overloading the insertion operator (<>) to read objects from streams.

Leave a Comment