#include #include int main(void) { float f1 = 2 / 3; float f2 = 2 / 3.; float f3 = 2. / 3; printf("%f %f %f\n", f1, f2, f3); return EXIT_SUCCESS; }