MODF(3) Linux Programmer's Manual MODF(3)

modf, modff, modfl - extract signed integral and fractional values from floating-point number

#include <math.h>

double modf(double x, double *iptr);

float modff(float x, float *iptr);

long double modfl(long double x, long double *iptr);

Link with -lm.

The modf() function breaks the argument x into an integral part and a fractional part, each of which has the same sign as x. The integral part is stored in iptr.

The modf() function returns the fractional part of x.

SVr4, 4.3BSD, C89. The float and long double variants are C99 requirements.

frexp(3), ldexp(3)

This page is part of release 2.69 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/.

2002-07-27

Different Versions of this Page: