How to use fmod to calculate modulus (%) of two float in C

1 Answer

0 votes
// 1.9 / 1.3 = 1.46 | 1.3 * 1 = 1.3 | 1.9 - 1.3 = 0.6

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

int main(void) {
    double value1 = 1.9, value2 = 1.3;

    double result = fmod(value1, value2);

    printf("The fmod of %f and %f = %f\n", value1, value2, result);

    return 0;
}




/*
run:

The fmod of 1.900000 and 1.300000 = 0.600000

*/

 



answered Sep 26, 2021 by avibootz
edited Jun 1, 2022 by avibootz

Related questions

1 answer 135 views
1 answer 172 views
172 views asked Nov 7, 2018 by avibootz
1 answer 160 views
160 views asked Nov 8, 2021 by avibootz
2 answers 162 views
1 answer 153 views
...