home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat110.c */
- /*------------------------------------------------------------------*/
- #include <math.h>
- #include <stdio.h>
-
- void main()
- {
- double result;
- double value = 0.12380;
-
- result = log(value);
- printf("%lf ñºª█╡M╣∩╝╞¡╚¼░ %lf\n", value, result);
-
- }