c programming question | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 2

c programming question

main() { float a=0.7; if(a<0.7) printf("Stoned"); else printf("Avenged"); } output- Stoned please explain the output .

24th Sep 2017, 7:10 PM
Aacharan Jain
Aacharan Jain - avatar
2 Antworten
+ 20
Because there's no exact representation of decimal numbers like 0.1, 0.2, 0.3 etc as the binary number inside the computer. you can compare two float and double precision number with the same value and get an unexpected result just because the precision of the approximated binary number float f = 10.1f; double d = 10.1; if ( f == d) // yes else // no And guess what, you get no. 10.9999999999 or 10.1000000001 Vs. 10.9999999999999999998 or 10.1000000000000000001 Notice: Even though floating point comparison isn't a good practice you can use it if you really know what you are gonna do. https://code.sololearn.com/c2y59NL16jZ4
24th Sep 2017, 9:05 PM
Babak
Babak - avatar
24th Sep 2017, 7:59 PM
Atul Agrawal