Loading...
Select Version
&pagelevel(4)&pagelevel
Syntax | #include <math.h> double fmod(double x, double y); |
Description | These functions compute the remainder of the division x/y. The remainder has the same sign as the dividend x, and its absolute value is always less than the divisor y. |
Return val. | Remainder of the division x/y |
if successful. | |
0 if y = 0. | |
Notes | An application should verify that y is non-zero before calling |
See also |
|