0247-float.c (94B)
1 double vec[] = { 2 -0.7, 3 +0.7, 4 }; 5 6 int 7 main(void) 8 { 9 return vec[0] == 0.0 || vec[1] == 0.0; 10 }