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

  1. If you use a goto statement to transfer control to a statement
  2. inside of a loop or block, initializations of automatic storage
  3. for that block do not take place.  The result is an error.  If you
  4. transfer control out of an active block with a goto statement, all
  5. local variables are destroyed.
  6.