I worked out the following code and got a bizarre output. Can anyone explain how it works?
main()
{
float a=0.8;
float b=0.25;
if(a==0.8)
printf("HELLO")
if(b==0.25)
printf("WORLD")
}
And the output that I got is surprisingly
WORLD
thanks in advance