CS2263/Final/FinalCode/polymorphism/shape.h

10 lines
137 B
C
Raw Permalink Normal View History

2023-05-22 23:28:51 -03:00
#ifndef shape_h
#define shape_h
typedef struct{
int numSides;
double perimeter;
double (*area) ();
} Shape;
#endif