I am doing this..
value >> 3;
It is always going toward negative side.How do I round toward zero with right shift division?
|
|
I am doing this..
It is always going toward negative side.How do I round toward zero with right shift division?
|
||||||||||||||||
|
|
|
You are encountering 'signed' shifting, when what you seem to want is unsigned shifting. Try casting it to unsigned first, like this
.. or you could just use division. |
||
|
|
|
|
Try the following expression instead:
That will force a negative number to be positive first so that it round towards zero, then changes the result back to negative. |
||
|
|
|
|
Do something conditionally depending on whether your value is positive or negative.
|
||
|
|
|
|
I do this:
|
||||||
|