home *** CD-ROM | disk | FTP | other *** search
- // \EXAMPLES\EX0418.CPP
- //
- // files in this program:
- // %F,15,EX0417.CPP%EX0417.CPP - secondary source file
- // %F,15,EX0417.H%EX0417.H - header file for this program
- // EX0418.CPP - this file (the main source file)
- //
- // has extern declarations to objects defined in ex0417.cpp
-
- #include <iostream.h>
- #include "ex0417.h" // for extern definitions from ex0417.cpp
-
- void main() {
- a = 3;
- cout << "ex0418 a: " << a << endl;
- f();
- }
-