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

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat132.c                                             */
  3. /*------------------------------------------------------------------*/
  4. #include <math.h>
  5. #include <stdio.h>
  6.  
  7. void main()
  8. {
  9.    double integer_part, fraction_part;
  10.    double number = -134000.2567;
  11.  
  12.    fraction_part = modf(number, &integer_part);
  13.    printf("¡┐║δ╖╟╝╞ %lf ñº╛π╝╞│íÑ≈¼░  %lf ,ñp╝╞│íÑ≈¼░ %lf\n",
  14.           number, integer_part, fraction_part);
  15. }
  16.