// struct.h // Multiple file compilation example // structure definition // #ifndef STRUCT_H #define STRUCT_H struct PEPPERMINT { int gum; int candy; char tea; char name[10]; int age; }; #endif