How to multiply a given number by 2 without using arithmetic operators in c language?
|
|
Use bit wise << operator:
This works for integer and long numbers (not floating point numbers). It basically shifts the binary contents one position to the left, which is equivalent to multiplying by 2 |
||||||||
|
|
|
Left shift. But why would you want to do that? Leave that kind of optimization to the compiler. List of operators and plenty of examples on wikipedia. |
||||||
|
|
|
Just to extend on kgiannakakis post: The shift operator
For the example (using the prefix 0b to represent binary numbers):
Shifting by other numbers is equivalent to multiplying by 2 'n' times, or multiplying by 2 to the nth power (2^n)
And an example in decimal to finish it off:
|
||
|
|
|
|
Caution: Shifting might not work for signed variables,
|
|||
|
