/* circle.h Definition for a circle "object" in C. */ struct circle { double radius; }; typedef struct circle Circle;