I have one specific problem while converting double values to string using sprintf() in UNIX.
For example I have two values:
double a = 0.009984354523452;
double b = 0.01;
While converting, I am using:
sprintf(somestringvar, "Double value : %.15f \n", a);
sprintf(diffstringvar, "Double value : %.15f \n", b);
to convert to a string.
My problem is for the 'a', the value is printing properly but for the value of 'b', 0's are appended at the tail end. Please provide me any common way to represent 'a' and 'b' as exact values.
sprintf(), as it can lead to buffer overruns. Usesnprintf()instead, or one of the_s"safe" versions Microsoft provides on Windows. p.s. Welcome to Stack Overflow! – Randall Cook Apr 26 '12 at 6:21printf("1/10 = %.50f\n", 0.1);outputs the following on my machine:d = 0.10000000000000000555111512312578270211815834045410. You might want to read up on the floating point representation. – Michael Wild Apr 26 '12 at 7:10