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