home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH11 / A11174.TXT < prev    next >
Encoding:
Text File  |  1993-08-04  |  410 b   |  8 lines

  1. The output operator (<<), also called the insertion operator,
  2. takes the contents of its second operand and places them in its
  3. first operand.  The first operand is a stream, while the second
  4. operand is a variable or a constant.  In this example, the first
  5. operand is the predefined output stream cout.  The output operator
  6. inserts the characters from the string literal "Hello World" in
  7. the cout stream.
  8.