fork download
  1. #include <iostream>
  2. #include <array>
  3.  
  4. int main() {
  5. std::array<unsigned int, 16> t_arr;
  6. std::array<unsigned int, 8> M0 = {{0}};
  7.  
  8. t_arr[0] = 0x61626300;
  9. M0[0] = t_arr[0] | (1 << 7);
  10.  
  11. std::cout << std::hex << M0[0] << "\n";
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
61626380