correct the syntax of the following cout << "yes"
Answers
Answered by
0
- They're bitwise shift operators ( << is shift left, >> is shift right). They're also commonly overloaded as streaming operators ( << then means stream out, >> stream in) — with stream type on the left side (e.g. std::ostream or std::istream ) and any other type on the right side.
_________________________
Similar questions