Monday, July 28, 2008

C Source code for multiplying two numbers without using multiplication operator.

int multiply( int num, int num1) {

num = (num << 3) - num;
return num;
}

No comments:

Your Title