IPnom Home • Manuals • FreeBSD

 FreeBSD Man Pages

Man Sections:Commands (1)System Calls (2)Library Functions (3)Device Drivers (4)File Formats (5)Miscellaneous (7)System Utilities (8)
Keyword Live Search (10 results max):
 Type in part of a command in the search box.
 


fmodf(3)

NAME

     fmod, fmodf -- floating-point remainder functions


LIBRARY

     Math Library (libm, -lm)


SYNOPSIS

     #include <math.h>

     double
     fmod(double x, double y);

     float
     fmodf(float x, float y);


DESCRIPTION

     The fmod() and the fmodf() functions compute the floating-point remainder
     of x/ y.


RETURN VALUES

     The fmod() and the fmodf() functions return the value x-i*y, for some
     integer i such that, if y is non-zero, the result has the same sign as x
     and magnitude less than the magnitude of y.  If y is zero, whether a
     domain error occurs or the fmod() and the fmodf() function returns zero
     is implementation-defined.


SEE ALSO

     math(3)


STANDARDS

     The fmod() function conforms to ISO/IEC 9899:1990 (``ISO C90'').

FreeBSD 5.4			  May 2, 1991			   FreeBSD 5.4

SPONSORED LINKS




Man(1) output converted with man2html , sed , awk