Menu

#83 unsigned shift right

open
nobody
OnBoard C (33)
5
2005-10-25
2005-10-25
hsl
No

UInt8 mask;

mask=0x80;

mask>>=1; // produces 0xC0 as 'mask' would be signed!
// correct result: 0x40
// workaround: I must correct the result...
mask&=0x7F;
// but better way is correct shift behaviour

Discussion


Log in to post a comment.

MongoDB Logo MongoDB