#include <stdio.h>

int main() {
    float a, b, c;
    printf ("floating point value a:");
    scanf ("%f",&a);
    printf ("%f\n",a);
    printf ("floating point value b:");
    scanf("%f",&b);
    printf ("%f\n",b);
    c=a*b;
    printf ("Answer c : %f",c);
    return 0;
}

Embed on website

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