/**************************************************************************** * structs.h * * David J. Malan * malan@harvard.edu * * Defines a student for structs{1,2}.c. ***************************************************************************/ #include // structure representing a student typedef struct { int id; string name; string house; } student;