home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c031 / 4.ddi / SAMPLES / IOSTUTOR / EXIOS117.CP$ / EXIOS117
Encoding:
Text File  |  1991-11-25  |  230 b   |  12 lines

  1. // exios117.cpp
  2. // Using get with a buffer and length
  3. #include <iostream.h>
  4.  
  5. void main()
  6. {
  7.    char line[25];
  8.    cout << " Type a line terminated by carriage return\n>";
  9.    cin.get( line, 25 );
  10.    cout << ' ' << line;
  11. }
  12.