Calculates the floating-point remainder.
#include <math.h> double fmod (double x, double y);
x, y
Calculates f
of x
/y
such that:
x = i * y + f
Where:
i
f
f
has the same sign as x
, and the absolute value of f
is less than the absolute value of y
. y
is 0.
This function does not return standard ANSI domain or range errors.
Versions | Defined in | Include | Link to |
---|---|---|---|
INtime 3.0 | intime/rt/include/math.h | math.h | clib.lib |