home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH03 / A03096.TXT < prev    next >
Encoding:
Text File  |  1993-08-11  |  286 b   |  6 lines

  1. You can define an identifier in one file and then use it in
  2. another file by declaring it with the keyword extern.  In this
  3. example, the identifier a is defined in program 1. It is declared
  4. extern in program 2. Similarly, b is defined in program 2 and
  5. declared extern in program 1.
  6.