home *** CD-ROM | disk | FTP | other *** search
- The input operator, also called the put-to or extraction operator,
- extracts characters from its first operand (a stream object),
- converts these characters to the type of its second operand
- (usually a variable), and places this value in the second operand.
- In this example, the first operand is the predefined stream cin.
- The input operator extracts characters from cin, converts them to
- an integer value, and places this value in the integer i.
-