erfc : erfc « math.h « C Tutorial






ItemValue
Header filemath.h
Declarationfloat erfcf(float arg);
double erfc(double arg);
long double erfcl(long double arg);
Returnreturns the complementary error function.


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

  int main(void)
  {

     printf("Value of e to the first: %f.", erfc(1.1));
 
  }
Value of e to the first: 0.119795.








19.15.erfc
19.15.1.erfc