home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH04 / A04161.TXT < prev    next >
Encoding:
Text File  |  1993-10-29  |  502 b   |  9 lines

  1. In traditional programming environments, the source code that
  2. makes up programs is divided into separate files.  Some of these
  3. files contain code that is unique to the program, and some (called
  4. header files) contain code that is shared among many programs.
  5. The program has to be able to make objects that are declared in
  6. one file available to code in another file.  This section
  7. describes how this is done in C++:  by including header files, and
  8. by declaring objects with the keyword "extern".
  9.