fork download
  1. #include <vector>
  2. #include <string>
  3. #include <iostream>
  4.  
  5. int main() {
  6. std::vector<std::string> words = {"you're"," wrong"," see?"};
  7. for(auto& i : words)
  8. std::cout << i;
  9. }
Success #stdin #stdout 0s 2984KB
stdin
Standard input is empty
stdout
you're wrong see?