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

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

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

erfc

Item Value Header file math.h Declaration float erfcf(float arg);double erfc(double arg);long double erfcl(long double arg); Return returns the complementary error function.


#include <math.h>
  #include <stdio.h>
  int main(void)
  {
     printf("Value of e to the first: %f.", erfc(1.1));
 
  }