Computer Science, asked by Chavikushwaha6B, 4 months ago

write a program to calculate the multiplication of two numbers​

Answers

Answered by gaytri9648
1

Answer:

Program to Multiply Two Numbers

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( ) .

Explanation:

i think this answer is helpful to you ☺️

Similar questions