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

}

Embed on website

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