#include <bitset> #include <string> using namespace std; int main( void ) { bitset<8> bitset1( "1001" ); string s("1001"); bitset<8> bitset2(s); }