home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / ATOF.C < prev    next >
Encoding:
Text File  |  1985-02-16  |  183 b   |  9 lines

  1. main()    /* atof.c -- Converts ASCII string to floating point number */
  2. {
  3. char *c;
  4. c = "    -123.456e7";
  5.     printf("%lf", atof(c));
  6.  
  7. /* correct result is -1234559999.999991 */
  8. }
  9.