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