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

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat111.c                                             */
  3. /*------------------------------------------------------------------*/
  4. #include <math.h>
  5. #include <stdio.h>
  6.  
  7. void main()
  8. {
  9.    double result;
  10.    double value = 0.12380;
  11.  
  12.    result = log10(value);
  13.    printf("%lf ÑH 10 ¼░⌐│╝╞ñº╣∩╝╞¡╚¼░ %lf\n", value, result);
  14.  
  15. }
  16.