#include <math.h> long double modf(long double x, long double *pint);
modfl
breaks down x into its integer portion (which it
stores in *pint) and the remaining fractional portion, which it
returns.
The fractional portion.
not ANSI, not POSIX
Go to the first, previous, next, last section, table of contents.