Could someone explain to me why the mask is not shifted to the right at all? You can use anything in place of that 1 and the result will be the same.
unsigned mask = ~0 >> 1;
printf("%u\n", mask);
|
Could someone explain to me why the mask is not shifted to the right at all? You can use anything in place of that 1 and the result will be the same.
|
||||
|
|
|
It's a type issue. If you cast the 0 to unsigned it'll be fine:
Edit per comments: or use unsigned literal notation, which is much more succinct. :)
|
|||||||||||||||
|
|
What's happening is |
||||
|
|
|
Try this:
The RHS of the assignment is treated as a signed quantity unless you cast it, which means you were seeing sign extension without the cast. (I also changed your print statement to display the number in hex, which is easier for me to decode.) |
|||
|
|
|
~0 is a string of ones. The >> operator shifts them, and in a signed value, it shifts ones into the higher order bits. So you can shift all you want, the result won't change. |
|||
|
|