fork download
  1. /**
  2.   * http://e...content-available-to-author-only...x.com/2013/11/05/ideone-online-code-editor
  3.   *
  4.   * Hello, world!
  5.   *
  6.   */
  7.  
  8. #include <iostream>
  9. using namespace std;
  10.  
  11. int main()
  12. {
  13. cout << "Hello, world!" << endl;
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
Hello, world!