Tagged Questions
7
votes
4answers
779 views
Why does this bitwise shift-right appear not to work?
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", ...