Home » » Calculation of Product of Two Numbers using Function

Calculation of Product of Two Numbers using Function

C Program for Calculation of Product of Two Numbers using Function.
Write a function which receives a float and an int from main(), finds the product

of these two and returns the product which is printed through main().

#include
main()
{

int i;
float j, prod;
float product (int x, float y);

printf("Enter the i(int) and j(float):");
scanf ("%d %f", &i, &j);

prod = product(i,j);

printf("Product:%f", prod);

}


product (int x, float y)
{

float product;
product = x*y;
return (product);

}


0 comments:

Post a Comment