floating-point remainder value function
#include <math.h> #include <stdio.h> int main(void) { printf("%1.1f", fmod(10.0, 3.0)); return 0; }