fork download
  1. #include <iostream>
  2. #include <bitset>
  3. using namespace std;
  4.  
  5. int main() {
  6. char c = 0x41;
  7. bitset<8> b(c);
  8. cout << b << endl;
  9. return 0;
  10. }
Success #stdin #stdout 0s 4508KB
stdin
Standard input is empty
stdout
01000001