#include #include int main() { std::bitset<8> b8 {}; std::cout << b8 << std::endl; b8[0] = true; b8[5] = true; std::cout << b8 << std::endl; }