home *** CD-ROM | disk | FTP | other *** search
- The output operator (<<), also called the insertion operator,
- takes the contents of its second operand and places them in its
- first operand. The first operand is a stream, while the second
- operand is a variable or a constant. In this example, the first
- operand is the predefined output stream cout. The output operator
- inserts the characters from the string literal "Hello World" in
- the cout stream.
-