home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Actual 13
/
CDA13.ISO
/
cdactual
/
demobin
/
share
/
program
/
C
/
ANSICPP.ZIP
/
EX10001.CPP
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1990-07-24
|
237 b
|
14 lines
// ex10001.cpp
// A buffered stream object
#include <iostream.h>
#include <time.h>
main()
{
time_t tm = time((time_t *)NULL) + 5;
cout << "Please wait...";
while (time((time_t *)NULL) < tm)
;
cout << "\nAll done";
}