home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / progc / cujv8c.arj / 8N06073A < prev    next >
Encoding:
Text File  |  1990-05-01  |  454 b   |  16 lines

  1. *****Listing 2*****
  2.  
  3.    static struct s_record print_record;  
  4.                                /* Declare a static record */  
  5.  
  6.    #define NUMBER_FIELDS 9    /* Number of fields in record */
  7.  
  8.    char *record_field_address[NUMBER_FIELDS] = 
  9.        {
  10.        print_record.firstname,
  11.        print_record.lastname,
  12.         ...
  13.        /* Remainder of the fields in the same format */
  14.        };                      /* Addresses of each field */
  15.  
  16.