...

/

Multiplication Without Using * Operator

Multiplication Without Using * Operator

Use Recursion to multiply two numbers without using the * operator.

We'll cover the following...

Problem statement

In this problem, we need to find the result of the multiplication of two numbers, a and b but without using * operator. This ...