cosh()
Prototype: double cosh (double a);
Header File: math.h (C) or cmath (C++)
Explanation: Returns the hyperbolic cosine of a.
//Example prints the hyperbolic cosine of .5
#include <cmath>
#include <iostream>
using namespace std;
int main()
{
cout<<cosh(.5);
}
Other Functions