Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,933 questions

51,870 answers

573 users

How to implement fmod (floating-point remainder) in C

1 Answer

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

double get_fmod(double a, double b) { 
    double f_mod = a; 
    
    if (a < 0) 
        f_mod = -a; 

    if (b < 0) 
        b = -b; 
  
    while (f_mod >= b) 
        f_mod = f_mod - b; 
  
    if (a < 0) 
        return -f_mod; 
  
    return f_mod; 
} 
  
int main() 
{ 
    double a = 10.7, b = 3.3; 
    
    printf("%.2f\n", get_fmod(a, b));
    printf("%.2f\n", fmod(a, b)); 
    
    return 0; 
}


/*
run:

0.80
0.80

*/

 



answered Sep 24, 2019 by avibootz
...