How to reverse bitwise AND (&) in C?
For example I have an operation in C like this:
((unsigned int)ptr & 0xff000000))
The
Bitwise & can't be reversed:
&
0 & 1 = 0 0 & 0 = 0