Please send questions to st10@humboldt.edu .
/*--------------------------------------------------
 header file for function circ_area
   created by smtuttle at Thu Oct 14 15:14:28 PDT 2010
--------------------------------------------------*/
#ifndef circ_area_H
#define circ_area_H

#include <string>
using namespace std;

const double PI = 3.14159265;

double circ_area(double radius);

#endif