home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat103.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <math.h>
-
- void main()
- {
- double result;
- double x = 5.4321;
-
- result = ldexp(x,4);
- printf("ldexp ¡╚¼░: %lf\n",
- result);
- }