Math H C

//Declaration: float erfcf(float arg); 
               double erfc(double arg); 
               long double erfcl(long double arg);  
 
    
  
  #include 
  #include 
  int main(void)
  {
     printf("Value of e to the first: %f.", erfc(1.1));
 
  }
         
/*
Value of e to the first: 0.119795.*/