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>_modfl() split long double in mantissa and exponent</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 _modfl()                Split Long Double in Mantissa and Exponent

 #include   <math.h>

 long double modfl(x, intptr);
 long double x;                 Long double floating point number
 long double *intptr;           Pointer to integer part

    _modfl() is the long double precision version of modf(); it breaks
    a long double precision value into fraction and integer parts and
    returns the signed fractional portion. The integer part is
    pointed to by inptr. See modf() for more information.

    Returns:    The signed fraction part of x.

 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