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

  1. The input operator, also called the put-to or extraction operator,
  2. extracts characters from its first operand (a stream object),
  3. converts these characters to the type of its second operand
  4. (usually a variable), and places this value in the second operand.
  5. In this example, the first operand is the predefined stream cin.
  6. The input operator extracts characters from cin, converts them to
  7. an integer value, and places this value in the integer i.
  8.