C++ Programming/Code/Standard C Library/Functions/modf
Appearance
modf
[edit | edit source]Syntax |
#include <cmath>
double modf( double num, double *i );
|
The function modf() splits num into its integer and fraction parts. It returns the fractional part and loads the integer part into i.