/*-------------------------------------------------- header file for function sum_array created by smtuttle at Wed Apr 21 14:27:40 PDT 2010 --------------------------------------------------*/ #ifndef sum_array_H #define sum_array_H #include <string> using namespace std; double sum_array(double values[], int num_values); #endif