Programming Code Center(PCC)
[C]

(PCC)::[C-Program-to-Multiply-Two-Floating-Point-Numbers-with-output]::[c]

File Name : multiplication.c

#include <stdio.h>
int main() {
    double a, b, product;
    printf("Enter two numbers: ");
    scanf("%lf %lf", &a, &b);  
 
    // Calculating product
    product = a * b;

    // Result up to 2 decimal point is displayed using %.2lf
    printf("Product = %.2lf", product);
    
    return 0;
}

Output :

multiplication.jpg