Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,166 questions

40,722 answers

573 users

How to get the total number of bits in a bitset with C++

1 Answer

0 votes
#include <bits/stdc++.h> 
  
using namespace std; 
    
int main() 
{ 
    bitset<6> bs(string("100100")); 
     
    cout << bs.size();
    
    return 0; 
} 
  
  
  
/*
run:
  
6
  
*/

 





answered Dec 7, 2019 by avibootz

Related questions

1 answer 72 views
1 answer 78 views
1 answer 67 views
1 answer 79 views
79 views asked Dec 6, 2019 by avibootz
5 answers 153 views
153 views asked Dec 6, 2019 by avibootz
...