in reply to Re^2: float values and operators
in thread float values and operators

C doesn't deal, actually:

$ cat a.c #include <stdio.h> int main() { printf("%s\n", 36.6 == 36.8-0.2 ? "true" : "false"); return 0; } $ gcc a.c $ a.out false