1FLOOR(3M)                                                            FLOOR(3M)
2
3
4

NAME

6       fabs, floor, ceil - absolute value, floor, ceiling functions
7

SYNOPSIS

9       #include <math.h>
10
11       double floor(x)
12       double x;
13
14       double ceil(x)
15       double x;
16
17       double fabs(x)
18       double(x);
19

DESCRIPTION

21       Fabs returns the absolute value |x|.
22
23       Floor returns the largest integer not greater than x.
24
25       Ceil returns the smallest integer not less than x.
26

SEE ALSO

28       abs(3)
29
30
31
32                                                                     FLOOR(3M)
Impressum