Defined in header <math.h>        float       erfcf( float arg );   (1)   (since C99)   double      erfc( double arg );   (2)   (since C99)   long double erfcl( long double arg );   (3)   (since C99)   Defined in header <tgmath.h>        #define erfc( arg )   (4)   (since C99)  
 1-3) Computes the complementary error function of arg, that is 1.0-erf(arg), but without loss of precision for large arg.
 4) Type-generic macro: If arg has type long double, erfcl is called. Otherwise, i