#include <math.h>double ceil(double x);
ceil computes the smallest integer value not less than x.
ceil(±0) is ±0. ceil(±?) is ±?.
ceil conforms to ISO/IEC 9899:1990 (C90) and ISO/IEC 9899:1999 (C99).