hello daniweb...
i got my head struck with the code, and unable to understand the output.please help..
int main(void)
{
float i=3.3;
if(i < 3.3)
printf("hy");
else
printf("bye");
return 0;
}
output should by bye as 3.3 < 3.3 condition false , but why it is printing hy.
i am using gcc compiler