home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / EXAMPLES / EX0418.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-27  |  483 b   |  18 lines

  1. // \EXAMPLES\EX0418.CPP
  2. //
  3. // files in this program:
  4. // %F,15,EX0417.CPP%EX0417.CPP  - secondary source file
  5. // %F,15,EX0417.H%EX0417.H    - header file for this program
  6. // EX0418.CPP  - this file (the main source file)
  7. //
  8. // has extern declarations to objects defined in ex0417.cpp
  9.  
  10. #include <iostream.h>
  11. #include "ex0417.h"   // for extern definitions from ex0417.cpp
  12.  
  13. void main() {
  14.         a = 3;
  15.         cout << "ex0418 a: " << a << endl;
  16.         f();
  17.         }
  18.