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

  1. // exios118.cpp
  2. // The istream getline member function
  3. #include <iostream.h>
  4.  
  5. void main()
  6. {
  7.    char line[100];
  8.    cout << " Type a line terminated by 't'" << endl;
  9.    cin.getline( line, 100, 't' );
  10.    cout << line;
  11. }
  12.