The floor function

Name

floor -- 

Synopsis

#include <math.h>

double floor (double x );

Description

The floor function computes the largest integral value not greater than x.

Returns

The floor function returns the largest integral value not greater than x, expressed as a double.

See Also

The ceil function

Implementation Notes

None