CEIL - ceiling function.

(ANSI Standard)

Usage:

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

Where:

double x, y;
 

Description:

"ceil" returns the smallest integer (represented as a double precision number) that is greater than or equal to "x".

Copyright © 1996, Thinkage Ltd.