Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

ceil - Determine largest integer greater than or equal to argument in C

#include <math.h>
#include <stdio.h>

int main(void)
{

printf("%f", ceil(7.8));
   
}


Output
8