Tagged Questions
7
votes
4answers
770 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", ...
1
vote
4answers
129 views
What is meaning of !! in C — and why is it needed? [closed]
Possible Duplicate:
Double Negation in C++ code
While reading one code I read:
flush = ! !(flags & GST_SEEK_FLAG_FLUSH);
I am not getting what does !! mean here .
what does this ...