/** * structs.h * * David J. Malan * malan@harvard.edu * * Defines a student. */ #include // structure representing a student typedef struct { string name; string house; } student;