I was just going through some basic stuff as I am learning C. I came upon a question to multiply a number by 7 without using * operator. Basically its like this
(x<<3)-x;
Now I know about basic bit manipulation operations, but I can't get how do you multiply a number by any other odd number number without using * operator? Is there any general algorithm for this?
*operator; that's what it's for. This is nearly a duplicate of this question. Note that(x<<3) - xcan overflow for some values ofxwhere the simpler and clearerx * 7won't. – Keith Thompson Dec 29 '11 at 2:49