Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Microsoft C 6.0 - <b>ldexpl() convert mantissa and exponent into long double</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 ldexpl()                Convert Mantissa and Exponent into Long Double

 #include   <math.h>
 #include   <errno.h>

 long double ldexpl(m, exp);
 long double m;         Long double floating point mantissa value
 int exp;               Exponent

    ldexp() is the long double precision version of ldexp(); it converts
    the mantissa m and the exponent exp you pass into a long double
    precision floating point value, which it returns. See ldexp() for
    more information.

    Returns:    The exponential value if successful; .LHUGE_VAL
                on overflow.

 Portability:   Not supported by the ANSI standard.


See Also: frexp() ldexp() modf()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson