Calculates hyperbolic cosine.
double cosh( double x )
cosh(x)
EX1
void cosh_ex1() { double x = 2.; double val = cosh(x); printf("cosh(%f) = %f\n", x, val); }
origin.h