modf 是 c 引用函数,此函数将数字或值分解为小数部分和整数部分,这些部分与他们的自变量有相同符号。
在 C 中,modf 函数的函数原型如下所示
double modf(double num, double *i); float modf(float num, float *i);