home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / ATOL.C < prev    next >
Encoding:
Text File  |  1985-01-21  |  216 b   |  11 lines

  1. main()    /* atoi.c -- converts ASCII string to a long integer */
  2.  
  3. {
  4. char *c;
  5. long result;
  6. c = "    -123234.456e7";
  7. result = atol(c);
  8. printf("\nlong result is %ld", result);
  9. /* correct result is -123234 */
  10. }
  11.