home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH11 / A11172.TXT < prev    next >
Encoding:
Text File  |  1993-10-22  |  497 b   |  9 lines

  1. An input operator returns a reference to a stream object.  Because
  2. of this, the result of one input operator can become the first
  3. operand of another input operator.  In this example, the first
  4. input operator extracts characters from cin, places them in i, and
  5. returns the modified cin stream.  This modified cin stream is the
  6. first operand of the second input operator.  The second input
  7. operator takes characters from the modified stream and places them
  8. in the floating-point variable f.
  9.