Please send questions to st10@humboldt.edu .
/*--------------------------------------------------
 header file for function circ_area
   created by st10 at Fri Oct 15 08:54:05 PDT 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