home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
octa21fs.zip
/
octave
/
stdcpp
/
test
/
hello.cc
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
|
2000-01-15
|
159 b
|
13 lines
// Hello, World in C++
#include <iostream.h>
#include <stdlib.h>
int main(void)
{
cout << "Hello, World" << endl;
sleep (60);
return 0;
}