Write a C program that print the product given two numbers
Answers
Answered by
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