Home Forums C Programming doubt on comparision operator Reply To: doubt on comparision operator

#3231
will
Participant

@drop2kumar wrote:

Hi
the followiing code is giving 1 as answer but answer should be 0 …becoz 0.7 is not grater than 0.7

 
Actually you are comparing the float type variable with a value which can be any thing. It can be an integer, float or any thing else. So in that case compiler does not know about the type.
Now if you explicitly mention the type of both the variables and then compare them the result would be according to your expectations. Hopefully this would clear your doubt.