google search

Popular Posts


Welcome to BCA Notes

>>>>>>>>>>>>>>>>

Visitors

Search This Blog

Blogger templates

Visitor Map


Sunday 19 January 2014

Multiply two Floating Point Numbers

C Program to Multiply two Floating Point Numbers

Source Code:-



/*C program to multiply and display the product of two floating point numbers entered by user. */

#include <stdio.h>
int main( )
{
    float num1, num2, product;
    printf("Enter two numbers: ");
    scanf("%f %f",&num1,&num2);        /* Stores the two floating point numbers entered by user in variable num1 and num2 respectively */
    product=num1*num2;  /* Performs multiplication and stores it */
    printf("Product: %f",product);
    return 0;
}
Output

Enter two numbers: 2.4
1.1
Sum: 2.640000

0 comments:

Post a Comment