home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a120 / 1.ddi / WATCOM_C / WAT11.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-05-13  |  396 b   |  14 lines

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat11.c                                              */
  3. /*------------------------------------------------------------------*/
  4. #include <stdlib.h>
  5. #include <stdio.h>
  6. void main()
  7. {
  8.  double f;
  9.  char *string = "98765.4321" ;
  10.  
  11.  f = atof(string);
  12.  printf("ªrªΩ¼░: %s ¡┐║δ╖╟╝╞¼░: %5.4f\n",string,f);
  13. }
  14.