#include<stdio.h>
int main(){
float f1=14.375;
float f2=14.385;
if(f1==14.375)
printf("Yes1\n");
else
printf("No1\n");
if(f2==14.385)
printf("Yes2\n");
else
printf("No2\n");
return 0;
}
the output of this prog is
Yes1
No2
but i had expected
Yes1
Yes2
plz explain me the output...??