home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tyc / list1715.c < prev    next >
C/C++ Source or Header  |  1993-10-16  |  397b  |  25 lines

  1.  /* Demonstration of atof(). */
  2.  
  3.  
  4.  #include <stdio.h>
  5.  #include <stdlib.h>
  6.  
  7.  main()
  8.  {
  9.      char buf[80];
  10.      double d;
  11.  
  12.      while (1)
  13.      {
  14.          printf("\nEnter the string to convert (blank to exit): ");
  15.          gets(buf);
  16.  
  17.          if ( strlen(buf) == 0 )
  18.              break;
  19.  
  20.          d = atof( buf );
  21.  
  22.          printf("The converted value is %f.", d);
  23.      }
  24. }
  25.