How to get the integer and the fraction part of double number in C

1 Answer

0 votes
#include <stdio.h>     
#include <math.h> 
 
int main(void)
{
    double d = 3.141592, integer;

    double fraction = modf(d, &integer);

    printf("Integer = %lf\n", integer);
    printf("Fraction = %lf\n", fraction);

    return 0;
}
    
/*
run:
 
Integer = 3.000000
Fraction = 0.141592
 
*/

 



answered May 12, 2018 by avibootz
...