#include <math.h>
double sinh(double x);
float sinhf(float x);
sinh() computes the hyperbolic sine of x.
The hyperbolic sine sinh(x) of x. If it fails because the value is too large, it returns infinity with the same sign as x and sets errno to ERANGE.
sin() and sinf(), and