I have the following:
int a = 10001000;
int b = 10000000;
I want the following output:
(a&b) = 10000000;
But my problem is that java converts to binary before using the "&" operation, and I'd really like to be able to use this on integers in the above fashion. Can this be done?