Introducing Radical.sh

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

floor - Finds smallest integer less than or equal to argument in C

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

int main(void)
{

    printf("Floor Value is %f", floor(10.9));
 
}


Ouptut:
Floor Value is 10.0000