home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Actual 13
/
CDA13.ISO
/
cdactual
/
demobin
/
share
/
program
/
C
/
ANSICPP.ZIP
/
EX02008.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
|
236 b
|
13 lines
// ex02008.cpp
// Linkage-specifications
#include <iostream.h>
extern "C" { // the linkage-specification
#include <stdlib.h> // tells C++ that stdlib functions
} // were compiled with C
main()
{
cout << rand();
}