home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH07 / A0709411.TXT < prev    next >
Encoding:
Text File  |  1993-10-21  |  257 b   |  7 lines

  1. When the function ends, its local objects are
  2. destroyed and removed from the stack.  The
  3. static objects remain and retain their value
  4. until the next time the function is called.
  5. The integer "static_in_func_a" is invisible to
  6. code outside of func_a().
  7.