// Floats #include #include int main(void) { // Prompt user for x float x = get_float("What's x? "); // Prompt user for y float y = get_float("What's y? "); // Divide x by y printf("%.50f\n", x / y); }