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

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