fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. cout << "Hello World" << endl;
  8. char p[256];
  9.  
  10. char ch=128;
  11. char ch2 = 126;
  12. char ch3 = ch+ch2+'0'+2;
  13. cout<<"right"<<ch3<<endl;
  14. return 0;
  15. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
Hello World
right0