home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_08_06 / 8n06073b < prev    next >
Text File  |  1990-05-01  |  309b  |  16 lines

  1. *****Listing 3*****
  2.  
  3.     show_record()
  4.        {
  5.        int i;
  6.  
  7.        /* Copy in the record to be printed */
  8.        print_record = *record[current_record];
  9.         
  10.        for (i=0; i < NUMBER_FIELDS; i++)
  11.            {
  12.            printf("%s\n", record_field_address[i]);
  13.            }
  14.        }
  15.  
  16.