Electrical and Computer Engineering
13 of 17
UAH
CPE 112
Hierarchical Record Example
•    struct DateType
•    {   int month;
•        int day;
•        int year
•    };
•    struct StatisticsType
•    {
•        float    failRate;
•        DateType lastServiced;
•        int      downDays;
•    };
•    struct MachineRec
•    {
•        int            idNumber;
•        string         description;
•        StatisticsType history;
•        DateType       purchaseDate;
•        float          cost;
•    };
•