Guest

Untitled

By: a guest on Jan 28th, 2012  |  syntax: None  |  size: 0.17 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. void simpleScope()
  2. {  
  3.     int i;
  4.    
  5.     i = 0;
  6.     {  
  7.         int j;
  8.         checkpoint1:
  9.         j = 0;
  10.         checkpoint2:
  11.     }
  12.     checkpoint3:
  13. }