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