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

  1. An identifier has file scope if its declaration appears outside
  2. of all blocks and classes.  An identifier with file scope is
  3. visible from the point where it is declared to the end of the
  4. source file.  Such an identifier is also accessible for the
  5. initialization of global variables.  If an identifier is declared
  6. extern, it is also visible, at linkage time, in all object files
  7. being linked.  Global identifiers are identifiers declared
  8. with file scope.
  9.