Please send questions to st10@humboldt.edu .
/*
   header file for function: circ_area
   by: Sharon Tuttle
   last modified date: 4-16-07
*/

#ifndef CIRC_AREA_H
#define CIRC_AREA_H

const double PI = 3.14159;

double circ_area(double radius);

#endif