Computer Science, asked by sehaj1415, 1 month ago

Write a program to multiply two numbers by using user input​

Answers

Answered by Villain0990
1

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 .

Answered by jawedkha606
0

Answer:

Program to Multiply Two Numbers

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