Answer:
I think thats just a software issue. i have the same problem
Explanation:
Wiki is the correct answer
<span>The modf() function will do this for you:
double x, y, d;
x = -14.876;
y = modf(x, &d);
printf("Fractional part = %lf\n", y);
</span>
That is program ............