home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib6 / v_08_06 / 8n06074c < prev    next >
Encoding:
Text File  |  1995-11-01  |  333 b   |  14 lines

  1. *****Listing 7*****
  2.  
  3.    static struct s_record print_record;    
  4.  
  5.    #define NUMBER_FIELDS 9
  6.    int record_field_offsets[NUMBER_FIELDS] = 
  7.        {
  8.        print_record.firstname - (char *) &print_record,
  9.        print_record.lastname - (char *) &print_record,
  10.         ...
  11.        /* Remainder of the offsets */
  12.        };
  13.  
  14.