#ifndef shape_h #define shape_h typedef struct{ int numSides; double perimeter; double (*area) (); } Shape; #endif