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 215 views
1 answer 273 views
1 answer 203 views
2 answers 240 views
1 answer 175 views
1 answer 215 views
...