fork(1) download
  1. #include <iostream>
  2. #include <string>
  3. #include <vector>
  4. #include <algorithm>
  5.  
  6. int main()
  7. {
  8. char cStr[] = "Hello World";
  9. for (char c : cStr)
  10. {
  11. std::cout << c;
  12. }
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
Hello World