/* Inputs two floating point values and */ /* displays their product. */ #include float x, y; main() { puts("Enter two values: "); scanf("%f %f", &x, &y); printf("\nThe product is %f\n", x * y); return 0; }