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

  1. *****Listing 4*****
  2.  
  3.  
  4.    show_record()
  5.        {
  6.        int i;
  7.        char *pc;
  8.        pc = (char *) record[current_record];
  9.        for (i=0; i < NUMBER_FIELDS; i++)
  10.            {
  11.            printf("%s\n", pc + record_offsets[i]);
  12.            }
  13.        }
  14.  
  15.