#include <stdio.h>
int main() {
float a,b,product;
    {printf("enter the first values\n");}
 scanf("%f",&a);
    {printf("enter the second values\n");}
     scanf("%f",&b);
    product=a*b;
    {
        printf("the is multiple of two floating numbers is=%2lf",product);
            }
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: