Go to the first, previous, next, last section, table of contents.
#include <math.h> double floor(double x);
This function computes the largest integer not greater than x.
The largest integer value less than or equal to x. Infinities and
NaN
s are returned unchanged.
ANSI, POSIX
Go to the first, previous, next, last section, table of contents.