Please explain why output is true. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Please explain why output is true.

#include <stdio.h> int main() { float a=0.3; double b = 0.3; if(b < a){ printf("true"); }else printf("false"); return 0; } //true

18th Jun 2021, 2:17 PM
I Am a Baked Potato
I Am a Baked Potato - avatar
11 Answers
+ 6
Tushar Kumar please add to your code before if statement this: printf("a = %.10f",(double)a); printf(", b = %.10f",b); //a = 0.3000000119, b = 0.3000000000 //true then you will see what will be done before if comparisation - implicite conversion (Type Casting) to the same data type, here to double. https://code.sololearn.com/cz3bZ9k39JJy/?ref=app
18th Jun 2021, 6:21 PM
JaScript
JaScript - avatar
+ 5
When compared with double float is less accurate.
18th Jun 2021, 4:01 PM
JaScript
JaScript - avatar
+ 4
The compiler cannot compare apples with oranges so here decides to convert the float type to the more precise double. This results in the other value after the type conversion. Similar programming errors have led to rocket crashes or severe consequences in the past. The programmer must be aware of how the calculations work digitally to counteract this accordingly.
19th Jun 2021, 9:24 AM
JaScript
JaScript - avatar
+ 2
Tushar Kumar The one with more precision will not always be the smallest. It depends on the value you are assigning. If you want you can take a look at my answer to this very similar question where I explained it in more detail. https://www.sololearn.com/discuss/2772010/?ref=app
19th Jun 2021, 2:34 PM
Hape
Hape - avatar
+ 2
Here this code has followed order of precedence ig ( bool->char->int>float->double)
19th Jun 2021, 4:20 PM
Chinmay Anand
Chinmay Anand - avatar
+ 1
JaScript didn't understand please little more clarification. Also, When I change the value to a=0.03 and b=0.03 then it become false. Why?
18th Jun 2021, 4:23 PM
I Am a Baked Potato
I Am a Baked Potato - avatar
+ 1
JaScript Oh thank you.. now I understand what actually inside going on. Also it means the one whose precision is more accurate will be the smallest? that's why double is not getting printed right?
19th Jun 2021, 2:41 AM
I Am a Baked Potato
I Am a Baked Potato - avatar
+ 1
JaScript I don't want any more rocket crash gonna dig it into depth xD. Thank you Sir
19th Jun 2021, 3:08 PM
I Am a Baked Potato
I Am a Baked Potato - avatar
0
Hape I went through your answers.. it's really helpful at least it cleared my doubt that if float 0.3 is greater than double 0.3 doesn't mean it will always be greater in this case, like if when float & double is 0.7 then here double 0.7 is greater. So it differes from number to number. Now I'm wondering what's the good way of comparing precise decimal numbers? Should compare always with same data type?
19th Jun 2021, 3:07 PM
I Am a Baked Potato
I Am a Baked Potato - avatar
0
Tushar Kumar there are several ways to handle this problem. In general you can not exactly compare all real numbers with each other using a computer. That is just not possible (mathematically). This problem actually just arises from the fact that you are thinking in numbers nicely representable in the decimal number system and a computer is thinking in numbers nicely representable in binary (at least computers using binary floating point numbers which most computers do). So if you really want (or need) to compare decimal floating point numbers just don't use floats at all and instead use integers. This results in sort of implementing a custom decimal floating point or fixed point arithmetic. This sounds more complicated than it is. Just store 3 instead of 0.3 and remember somewhere that you have to divide by ten to get the actual value. Then you can compare decimal numbers "exactly".
19th Jun 2021, 3:27 PM
Hape
Hape - avatar
- 3
They are both thesame so the code can't print False because 0.3 has been assigned to both a and b . So it can only print True as the output
18th Jun 2021, 9:44 PM
Mina Puker