Help for this page

Select Code to Download


  1. or download this
    /* test_isnanl.c */
    #include <math.h>
    int test_isnanl(long double x) { return isnanl(x); }
    
  2. or download this
    #include <stdio.h>
    #include <stdlib.h>
    ...
     printf("%Lf", erfl(x));
     return 0;
    }