home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_11_07 / 1107103b < prev    next >
Text File  |  1993-04-29  |  216b  |  16 lines

  1. // copy3.cpp:   Read whitespace with >>
  2. #include <iostream.h>
  3.  
  4. main()
  5. {
  6.     char c;
  7.  
  8.     // Don't skip whitespace
  9.     cin.unsetf(ios::skipws);
  10.  
  11.     while (cin >> c)
  12.         cout << c;
  13.     return 0;
  14. }
  15.  
  16.