clear ith bit code example Example: clear ith bit x&(~(1<<i)) ~ : inverts 0011 0110 & 1101 1111 ~(1<<i) ----------- 0001 0110