fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main(int agrc, char** agrv)
  6. {
  7. string hello = "Hello, World!";
  8. cout << hello << endl;
  9. return 0;
  10. }
Success #stdin #stdout 0s 5300KB
stdin
Standard input is empty
stdout
Hello, World!