You are viewing a single comment's thread from:
RE: The Programmer's Challenge of the Day
Answer is 'YES' and it happens like this because 'a' is in float but 0.7 is by default double so the binary representation of both vary and causes this result to occur.
To get correct result you need to use a < 0.7f : )
It's true.
It's damn true.
Thanks for the explanation.