How to set a bit in bitset at specific index in C++

1 Answer

0 votes
#include <bits/stdc++.h> 

using namespace std; 
  
int main() 
{ 
    bitset<6> bs(string("100010")); 

    bs.set(2); 
    cout << bs << endl; 
    
    bs.set(4); 
    cout << bs << endl; 
    
    return 0; 
} 



/*
run:

100110
110110

*/

 



answered Dec 6, 2019 by avibootz

Related questions

1 answer 231 views
1 answer 283 views
1 answer 209 views
2 answers 245 views
1 answer 181 views
1 answer 230 views
...