Introducing Radical.sh

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

fmod - Finds floating-point remainder in C

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

int main()
{
    printf("%1.1f", fmod(7.0, 2.0));

    return 0;
}
// Output : 1