write a program to calculate the multiplication of two numbers
Answers
Answered by
0
Answer:
Program to Multiply Two Numbers
Program to Multiply Two Numbersprintf("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