insertion operator

The insertion operator, also known as "<<", is a binary operator in programming languages, particularly in C++ and other languages influenced by it. It is used to insert data into an output stream, typically for displaying it on the screen or writing it to a file. The left operand of the insertion operator is the output stream object, and the right operand is the data to be inserted.

Requires login.