bitand - альтернативный оператор языка С++ аналогичный "Побитовое И" &
#include<iostream>// cout, endl
using namespace std;intmain(){char a =0b11110000;// Задаем 8 битchar b =0b00111100;// Задаем 8 бит
cout <<"a bitand b = "<<(a bitand b);//48 (0b00110000) Выводим результат "Побитовое И" от a и b (a & b)}