/*-------------------------------------------------- header file for function circ_area created by st10 at Thu Oct 13 14:05:31 PST 2016 --------------------------------------------------*/ #ifndef circ_area_H #define circ_area_H #include <string> using namespace std; const double PI = 3.14159; double circ_area(double radius); #endif