OP Üye
Teşekkür Sayısı: 0
76 mesaj
Kayıt Tarihi:Kayıt: Tem 2009
void main()
{
float x=0.7;
if(x==0.7) printf("a");
else if(x<0.7) printf("b");
else printf("c");
}
arkadaşlar bu kodu derlediğimde sonuç b çıkıyor ama x 0.7'ye eşit. bunun nedeni nedir?