Asin Function


It is used for getting the Arc HyperBolic Sine value of the argument .

Syntax:

float asinhf(float arg);

double asinh(double arg);

long double asinhl(long double arg);

Example:

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

  int main()
  {
    double x = -1.0;
    
	do {
      printf("Arc Hyperbolic sine of %f is %f.\n", x, asinh(x));
      x += 0.1;
    } while(x<=1.0);

    return 0;
  }
     
Back