Please send questions to st10@humboldt.edu .
/*--------------------------------------------------
 header file for function circ_area
   created by st10 at Mon Mar  8 13:38:09 PST 2010
--------------------------------------------------*/
#ifndef circ_area_H
#define circ_area_H

#include <string>
using namespace std;

const double PI = 3.14159;

double circ_area(double radius);

#endif