C/math.h/asinh — различия между версиями

Материал из C\C++ эксперт
Перейти к: навигация, поиск
м (1 версия: Импорт контента...)
 
(нет различий)

Текущая версия на 10:22, 25 мая 2010

asinh: returns the arc hyperbolic sine of arg

    
//Declaration: float asinhf(float arg); 
               double asinh(double arg); 
               long double asinhl(long double arg);  
 
    
  
  #include <math.h>
  #include <stdio.h>
  int main(void)
  {
    printf("%f.\n", asinh(12));
    return 0;
  }
         
/*
3.179785.
*/