Why this code gives NOK
?
int main()
{
float f = 0.1;
if (f == 0.1) {
printf("OK\r\n");
} else {
printf("NOK\r\n");
}
return 0;
}
Why this code gives NOK
?
int main()
{
float f = 0.1;
if (f == 0.1) {
printf("OK\r\n");
} else {
printf("NOK\r\n");
}
return 0;
}