#include #include int main(void) { float x, x2; double y, y2; x = 1e8 + 5e-4; x2 = -0.2223; y = 1e8 + 5e-4; y2 = -6e306; printf("Two floats are %f\n and %f.\n", x, x2); printf("Two doubles are %lf\n and %lf.\n", y, y2); return EXIT_SUCCESS; }