fork download
  1. #include <bitset>
  2.  
  3. template <size_t N> using bs = std::bitset<N>;
  4.  
  5. int main()
  6. {
  7. bs<7> v;
  8. }
  9.  
Success #stdin #stdout 0s 2892KB
stdin
Standard input is empty
stdout
Standard output is empty