fork download
  1. #include <bitset>
  2.  
  3. template <unsigned int N>
  4. void printBitset(std::bitset<N> bs)
  5. {
  6. }
  7.  
  8. int main()
  9. {
  10. std::bitset<32> bs(63);
  11. printBitset(bs);
  12. }
Success #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty