Question: Write a C program that takes two integers, calculates and prints their product, using the successive addition (without using the multiplication operator (), the program

Write a C program that takes two integers, calculates and prints their product, using the successive addition (without using the multiplication operator (), the program should have a function called PRODUCT that takes two integers, calculates and returns their product (without using the (*) operator), the result should be printed from the main method: Example: 4*5 = 4+4+4+4+4 = 20 (added to itself 5 times)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
