home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH02 / A02124.TXT < prev    next >
Encoding:
Text File  |  1993-08-31  |  262 b   |  5 lines

  1. A name has local scope if it is declared in a block.  A block is a
  2. group of statements enclosed in a set of braces "{}". Temporary
  3. variables are usually local so that when you leave that part of
  4. the program, the value is no longer taking up space in memory.
  5.