fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main() {
  6. string a = "123456789";
  7. for (char& c : a) cout << c;
  8. }
  9.  
  10. //https://pt.stackoverflow.com/q/336586/101
Success #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout
123456789