Minor help needed

Revision en1, by sachyadon, 2017-03-07 14:34:39

include <bits/stdc++.h>

using namespace std;

int main() { bitset<10> s(string("0010011010")); cout << s[4] << "\n"; // 0 cout << s[5] << "\n"; // 1 return 0; }

The above code gives the output 1 and 0 instead of expected 0 and 1 I am using c++11. Not sure why it fails.

Please help

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en1 English sachyadon 2017-03-07 14:34:39 329 Initial revision (published)