/* nag_dawson (s15afc) Example Program.
 *
 * Copyright 2014 Numerical Algorithms Group.
 *
 * Mark 7, 2002.
 */

#include <nag.h>
#include <stdio.h>
#include <nag_stdlib.h>
#include <nags.h>

int main(void)
{
  double  x, y;
  Integer exit_status = 0;

  /* Skip heading in data file */
  scanf("%*[^\n]");
  printf("nag_dawson (s15afc) Example Program Results\n");
  printf("       x            y\n");
  while (scanf("%lf", &x) != EOF)
    {
      /* nag_dawson (s15afc).
       * Dawson's integral
       */
      y = nag_dawson(x);
      printf("%12.3e %12.3e\n", x, y);
    }

  return exit_status;
}