#include <stdio.h>
int main()
{
float a,b;
printf("Enter the first number:\n");
scanf("%f",&a);
printf("Enter the second number:\n");
scanf("%f",&b);
printf("mutiple of 2 numbers is %.3f",a*b);
}
To embed this project on your website, copy the following code and paste it into your website's HTML: