int main()
{
float i=0.3;
.......
........
if(i<0.3)
printf("ishq\n");
else
printf("hello\n");
return 0;
}
hi, can anyone please explain why i am getting output as "ishq" even if i=0.3 so if condition must be false. pleas help i am not getting it.
thanks.