#bit-manipulation
Read more stories on Hashnode
Articles with this tag
Specify a certain bit 1 x |= (1 << y); Specify a certain bit 0 x &= ~(1 << y); Specify the reverse of a certain bit x ^= (1 << y); Get the value...