Electrical
and Computer Engineering
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;
• };
•