modf

Returns the positive fractional part of its first argument and assigns the integer part, expressed as an object of type double, to the object whose address is specified by the second argument.

Format

#include  <math.h>

double modf  (double value, double *iptr);

Arguments

value
Must be an object of type double.
iptr
A pointer to an object of type double.


Previous Page | Next Page | Table of Contents | Index