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