qc.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
static
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
  Keyword:   static
 
  Syntax:    static declarator
 
  Summary:   Declares a variable to have a global lifetime. At the
             external level, the scope is the file in which the
             variable is declared. Within a block, the scope is the
             block. Declares a function to be visible only within the
             source file in which it is defined.
 
  See also:  auto, extern, register
                                    -♦-