fork download
  1. #include <iostream>
  2.  
  3. short high = 0x0060;
  4. short low = 0x0003;
  5. short result = low | high;
  6.  
  7. int main ()
  8. {
  9. std::cout << std::hex << result << std::endl;
  10. std::cout << sizeof(result) << std::endl;
  11. }
Success #stdin #stdout 0.01s 5476KB
stdin
Standard input is empty
stdout
63
2