ceil

Returns (as a double) the smallest integer that is greater than or equal to its argument.

Format

#include  <math.h>

double ceil  (double x);

Argument

x
A real value.

Return Values
The smallest integer greater than or equal to the function argument. 


Previous Page | Next Page | Table of Contents | Index