You are here : cpp0sinh

sinh() - 0

The C library function double sinh(double x) returns the hyperbolic sine of x.


Syntax

double sinh(double x)


Example

#include <stdio.h>
#include <math.h>

int main ()
{
   double x, ret;
   x = 0.5;

   ret = sinh(x);
   printf("The hyperbolic sine of %lf is %lf degrees", x, ret);
   
   return(0);
}


Output / Return Value

The hyperbolic sine of 0.500000 is 0.521095 degrees


Limitations


Alternatives / See Also


Reference