home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoftware Monthly 19…2 Programming Power Tools
/
MASO9512.ISO
/
cpptutor
/
cpptutor.arj
/
EXAMPLES
/
EX0417.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
|
1993-10-15
|
364 b
|
16 lines
// \EXAMPLES\EX0417.CPP
//
// files in this program:
// EX0417.CPP - this file
// %F,15,EX0417.H%EX0417.H - header file for this program
// %F,15,EX0418.CPP%EX0418.CPP - main source file for this program
#include <iostream.h>
#include "ex0417.h" // declares a and f() as extern
int a;
void f() {
cout << "ex0417 a: " << a << endl;
}