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

  1. // ex10001.cpp
  2. // A buffered stream object
  3. #include <iostream.h>
  4. #include <time.h>
  5.  
  6. main()
  7. {
  8.     time_t tm = time((time_t *)NULL) + 5;
  9.     cout << "Please wait...";
  10.     while (time((time_t *)NULL) < tm)
  11.         ;
  12.     cout << "\nAll done";
  13. }
  14.