#include <math.h>
double ceil(double x);
float ceilf(float x);
These functions round their parameters up to the nearest integer.
ceil() returns the smallest integral number larger than x.
floor() and floorf()
fmod() and fmodf()