C++Program to Multiply Two Numbers
Output
Enter two numbers: 3.4 5.5 Product = 18.7
In this program, the user is asked to enter two numbers. These two numbers entered by the user are stored in variable num1 and num2 respectively.
Then, the product of num1 and num2 is evaluated and the result is stored in variable product.
Finally, the product is displayed on the screen.