0

I want to remove two bits.

Example:

1 0101000 0 0010001

Result: 0101000 0010001

How can I do this in C++ ;O?

P0W
  • 46,614
  • 9
  • 72
  • 119

1 Answers1

0

Use std::bitset or boost::dynamic_bitset

Vishnu Kanwar
  • 761
  • 5
  • 22