I want to remove two bits.
Example:
1 0101000 0 0010001
Result: 0101000 0010001
How can I do this in C++ ;O?
Use std::bitset or boost::dynamic_bitset
std::bitset
boost::dynamic_bitset