fork download
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5. char a[] = { 'H', 'e', 'l', 'l', 'o' };
  6. for (auto c : a)
  7. {
  8. std::cout << c;
  9. }
  10. }
  11.  
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
Hello