/* nag_erfc (s15adc) Example Program. * * Copyright 1990 Numerical Algorithms Group. * * Mark 1, 1990. */ #include #include #include #include int main(void) { Integer exit_status = 0; double x, y; /* Skip heading in data file */ scanf("%*[^\n]"); printf("nag_erfc (s15adc) Example Program Results\n"); printf(" x y\n"); while (scanf("%lf", &x) != EOF) { /* nag_erfc (s15adc). * Complement of error function erfc(x) */ y = nag_erfc(x); printf("%12.3e%12.3e\n", x, y); } return exit_status; }