home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgLangD.iso
/
C++-7
/
DISK4
/
SAMPLES
/
IOSTUTOR
/
EXIOS109.CP$
/
EXIOS109
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1991-11-25
|
248 b
|
14 lines
// exios109.cpp
// A buffered stream object
#include <iostream.h>
#include <time.h>
void main()
{
time_t tm = time( NULL ) + 5;
cout << "Please wait...";
while ( time( NULL ) < tm )
;
cout << "\nAll done" << endl;
}