What does this expression mean?
Note. x and y vars are just the sample values.
int x = 3; int y = 1; if ((x & y) !=0)
I inherited the code base and can't get to the speed with bitwise operators. I read, but still something is missing. Help!
source share