Bit operators / & - bitwise AND / Essential C++
#include <iostream>
int main(int argc, char **argv) {
int a = 6; // 0110b (0x06)
int b = 10; // 1010b (0x0A)
int c = a & b; // 0010b (0x02)
std::cout << "a = " << a << ", b = " << b << ", c = " << c << std::endl;
}INFO