Click here to Skip to main content
15,886,067 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
In this program float x value is 1.234567890000 but output is 1.234567880630. I did't understand this output anybody explain



XML
#include<stdio.h>
#include<conio.h>

void main()
{
float x;
x = 1.234567890000;

printf("%.12lf\n",x);

getch();
}
Posted
Comments
Amir Mahfoozi 4-Feb-12 0:59am    
Change float to double and it produces what you wished :)

Please do some reading on the limitations of floating point values. Here's a starter[^]
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 4-Feb-12 2:30am    
Right, a 5.
--SA
File this away for future reference:

The "imprecision" is in producing the OUTPUT, the conversion of the binary / computer representation of the number into the string of characters that you display. This is true regardless of whether it is you printing the value or the debugger displaying it for you. Both processes need to take the binary value and convert it to a string of characters for your eyes.

If you a computing a value and wish to use it in other compututations then always carry the binary value around, don't convert it to a string and then reconvert it to binary. The binary value is as precise as you are going to get, converting it back and forth only adds "imprecision"

Computer binary representations (Base 2) and printed represetnations (in Base 10) are inherently incompatible and can only be approximated. You control the approximation with the format specifier for how many digits you want to see.

PS - when I was in college, I had a Comp Sci instructor who told us that "Floating Point Numbers have a precision of about 6 significant digits" (single precision back then). Concerning format statements, I asked "What happens when I ask it to print 10 digits after the decimal point? How does it get the extra 4 digits?" His response - "It makes them up." That's as true today as it was 45 years ago. You asked a single precision floating point number to print 12 digits of precision. It made some of them up :)
 
Share this answer
 
v2
Comments
Sergey Alexandrovich Kryukov 4-Feb-12 2:31am    
Nice explanation, a 5.
--SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900