I am trying to convert decimal number into its fraction. Decimal numbers will be having a maximum 4 digits after the decimal place. example:- 12.34 = 1234/100 12.3456 = 123456/10000
my code :-
#include <stdio.h>
int main(void) {
double a=12.34;
int c=10000;
double b=(a-floor(a))*c;
int d=(int)floor(a)*c+(int)b;
while(1) {
if(d%10==0) {
d=d/10;
c=c/10;
}
else break;
}
printf("%d/%d",d,c);
return 0;
}
but I am not getting correct output, Decimal numbers will be of double precision only.Please guide me what I should do.

int d = (int)round(a * c);would be a good starting point. If you only usefloorand truncation, things like12.34 = 12.339999999999999857891452847979962825775146484375can trip you up hard. But I agree with Kerrek, you should use integers from the beginning for that. – Daniel Fischer Nov 13 '12 at 16:25