fork download
  1. #include <vector> // <== Necessary for std::vector
  2. #include <iostream> // <== Necessary for overloads of operator << and std::cout
  3.  
  4. int main()
  5. {
  6. std::vector<int> temp = { 1 };
  7. temp.push_back(42);
  8. std::cout << temp[0] << "," << temp[1];
  9. }
  10.  
  11.  
Success #stdin #stdout 0s 2984KB
stdin
Standard input is empty
stdout
1,42