Math, asked by vaishnavikoshti2019, 6 months ago

write a program to product of 2 float variable ​

Answers

Answered by malavika5596
6

Answer:

In this program, the user is asked to enter two numbers which are stored in variables a and b respectively. printf("Enter two numbers: "); scanf("%lf %lf", &a, &b); Then, the product of a and b is evaluated and the result is stored in product .

Similar questions