Let's say you have a binary number, 8 bits long. You don't know what it is.
xxxx xxxx
I want to set bit 4 to 0. How do I do this?
If I knew the values of x, I could go
xxxx xxxx AND xxxx 0xxx
But I don't know the values of x. How can I do this without knowing the values?
Thank You.