fork download
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5. char const * st[] = {"123","456","789"};
  6. for (auto s : st)
  7. std::cout << s;
  8. std::cout << '\n';
  9. return 0;
  10. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
123456789