Computes a floating-point remainder.
#include <math.h>
double remainder (
double x,
double y);
(IN) Specifies the numerator.
(IN) Specifies the denominator.
If successful, returns the floating-point remainder, r= x- ny when y is nonzero.
If x is infinite or y is 0, a domain error occurs.