FLOOR - floor function.

(ANSI Standard)

Usage:

#include <math.h>
y = floor( x );

Where:

double x, y;
 

Description:

"floor" returns the largest integer (represented as a double precision number) that is less than or equal to "x".

Copyright © 1996, Thinkage Ltd.