BitAND-func
This function is used to return bitwise AND operation of two intergers.
int BitAND(int a, int b)
a
b
Return the result of two input numbers by bitwise AND operation.
aa = BitAND(1,7); aa =; //returns the result of an AND operation.
BitOR, BitXOR