#include <stdio.h>
int main()
{
double num1,num2,product;
printf("Enter the two numbers:\n");
scanf("%lf",&num1);
printf("num1=%lf\n",num1);
scanf("%lf",&num2);
printf("num2=%lf\n",num2);
product=num1*num2;
printf("The product of the numbers=%0.3lf\n",product);
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: