fork download
  1. #include <iostream>
  2.  
  3. int main(){
  4. char H = 0x48;
  5. char e = 0x65;
  6. char l = 0x6c;
  7. char o = 0x6f;
  8. char sp = 0x20;
  9. char W = 0x57;
  10. char r = 0x72;
  11. char d = 0x64;
  12. char ex = 0x21;
  13.  
  14. char S[]{H, e, l, l, o, sp, W, o, r, l, d ,ex,ex,0};
  15.  
  16. std::cout << S << std::endl;
  17.  
  18. return 0;
  19.  
  20. }
Success #stdin #stdout 0s 3140KB
stdin
Standard input is empty
stdout
Hello World!!