Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am facing an issue while dividing a double with an int. Code snippet is :

  double db = 10;
  int fac = 100;
  double res = db / fac;

The value of res is 0.10000000000000001 instead of 0.10.

Does anyone know what is the reason for this? I am using cc to compile the code.

share|improve this question
9  
Duplicate of MANY questions. See "floating-accuracy" tag. – dan04 Jun 16 '10 at 6:34
2  
possible duplicate of Why does 99.99 / 100 = 0.9998999999999999 – abelenky Jun 16 '10 at 6:52

3 Answers

The CPU uses binary representation of numbers. Your result cannot be represented exactly in binary. 0.1 in binary is 0.00011001100110011... CPU truncates it at a certain point and gets some rounding error.

share|improve this answer

double is a floating point operator, they do not provide precise values. Look up Precision and Floating Point Operators on google.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.