Write a C program to multiply two numbers without using * multiplication operator. Given two numbers, both numbers are positive. Write a program to multiply two numbers without using * multiplication operator. This problem is bit tricky as we are not allo
Multiply two integers without using multiplication, division and bitwise operators, and no loops Last Updated: 28-01-2019 By making use of recursion, we can multiply two integers with the given constraints.
Given two integers, multiply them without using multiplication operator or conditional loops. 1: Using Recursion. The idea is that for given two numbers a and b, we can get a*b by adding integer an exactly b times to the result.
Post a Comment:
Showing 0 Comments: