C Reference function sinh()

Usage of sinh():

double sinh(double x);

Parameters:

There is no range limit on the argument.

Return value:

There is no range limit on the return value.

Source code example of sinh():


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

	#define PI 3.14159265

	main()
	{
		double input, output;
		input = log(10.0);
		output = sinh (input);
		printf ("Hyperbolic sine of %lf is %lf.\n", input, output);
		return 0;
	}

Output of the sinh example program above:


	Hyperbolic sine of 2.302585 is 4.950000

This entry was posted in C Reference math.h Functions. You can follow any responses to this entry through the RSS 2.0 feed. Both comments and pings are currently closed. Tweet This! Tweet This! or use to share this post with others.

Comments are closed.