I am lacking some basic understanding in bitwise \'&\' operator.
5 = 101 4 = 100
So why the output of the below if conditi
if
0b101 & 0b100 = 0b100
or
5&4 = 4
and 4 is non-zero and prints Yes
Yes