Computes the smallest integer not less than x.
#include <math.h>
double ceil (
double x);
(IN) Specifies an argument.
Returns the smallest integer not less than x, expressed as a double type.
The ceil function (ceiling function) computes the smallest integer not less than x:
(ceil (x) ::= -floor (-x))