Computer Science, asked by diveshkesharwani62, 1 month ago

Write a C program that print the product given two numbers​

Answers

Answered by umershahzad4466
0

Answer:

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 . product = a * b; Finally, product is displayed on the screen using printf() .

Similar questions