Query: remainder
OS: opendarwin
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
REMAINDER(3) BSD Library Functions Manual REMAINDER(3)NAMEremainder -- floating-point remainder functionSYNOPSIS#include <math.h> double remainder(double x, double y); float remainderf(float x, float y);DESCRIPTIONThe remainder() and remainderf() functions compute the value r such that r = x - n*y, where n is the integer nearest the exact value of x/y. If there are two integers closest to x/y, n shall be the even one. If r is zero, it is given the same sign as x.SPECIAL VALUESremainder(x, y) returns a NaN and raises the "invalid" floating-point exception if x is infinite or y is 0.SEE ALSOmath(3)STANDARDSThe remainder() and remainderf() functions conform to ISO/IEC 9899:1999(E).BSDJuly 22, 2003 BSD
Related Man Pages |
---|
remainder(3) - mojave |
remainderf(3) - mojave |
remainderf(3) - osx |
remainderf(3) - freebsd |
remquo(3) - freebsd |