Calculates the floating-point remainder.
#include <math.h> double fmod (double x, double y);
x, yCalculates f of x/y such that:
x = i * y + f
Where:
iff 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 |