// Floating-point arithmetic #include #include int main(void) { // Prompt user for x float x = get_float("x: "); // Prompt user for y float y = get_float("y: "); // Perform division printf("%f divided by %f is %f\n", x, y, x / y); }