please give me the explanation.

Posted by swamy on Stack Overflow See other posts from Stack Overflow or by swamy
Published on 2010-06-18T13:50:05Z Indexed on 2010/06/18 13:53 UTC
Read the original article Hit count: 220

Filed under:
void main()
{
float a=0.5,b=0.7;
if(b<0.7)
{
 if(a<0.5)
 printf("hello");
 else
 printf("world");
}
else
 printf("jsdf");
}

output :world

please give the explanation.

© Stack Overflow or respective owner

Related posts about explanation