home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_11_08 / 1108118a < prev    next >
Text File  |  1993-05-23  |  249b  |  22 lines

  1.  1: int i;
  2.  2: char *q;
  3.  3: 
  4.  4: void f(char *p)
  5.  5:     {
  6.  6:     int i;
  7.  7:     // ...
  8.  8:     if (i == 5) 
  9.  9:         {
  10. 10:         char *p = 0;
  11. 11:         q = p;
  12. 12:         }
  13. 13:     if (q == 0)
  14. 14:         // ...
  15. 15:     }
  16. 16: 
  17. 17: void g()
  18. 18:     {
  19. 19:     i = 5;
  20. 20:     }
  21.  
  22.