home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_08_05 / 8n05073a < prev    next >
Text File  |  1990-04-18  |  87b  |  10 lines

  1. Listing 1:
  2. show()
  3. {
  4.     auto int i;
  5.  
  6.     i = 7;
  7.     printf("In show, i = %d\n", i);
  8. }
  9.  
  10.