#include <stdio.h>
main()
{
    float num1,num2,product;
    printf("enter first float number\n");
        scanf("%f",&num1);
        printf("enter second float number\n");
        scanf("%f",&num2);
        product=num1*num2;
    printf("the product of two float numbers %f",product);
}

Embed on website

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