home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 13 / CDA13.ISO / cdactual / demobin / share / program / C / ANSICPP.ZIP / EX10012.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1990-07-24  |  215 b   |  12 lines

  1. // ex10012.cpp
  2. // Using get with a buffer and length
  3. #include <iostream.h>
  4.  
  5. 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.