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:
C/C++ Source or Header  |  1993-10-15  |  364 b   |  16 lines

  1. // \EXAMPLES\EX0417.CPP
  2. //
  3. // files in this program:
  4. // EX0417.CPP - this file
  5. // %F,15,EX0417.H%EX0417.H    - header file for this program
  6. // %F,15,EX0418.CPP%EX0418.CPP  - main source file for this program
  7.  
  8. #include <iostream.h>
  9. #include "ex0417.h"       // declares a and f() as extern
  10.  
  11. int a;
  12.  
  13. void f() {
  14.    cout << "ex0417 a: " << a << endl;
  15. }
  16.