fork download
  1. #include <iostream>
  2. #include <vector>
  3. using namespace std;
  4.  
  5. int main() {
  6. vector <int> v;
  7. v.resize(4);
  8. v[3] = 7;
  9. v.resize(5);
  10. cout << v[3];
  11. return 0;
  12. }
Success #stdin #stdout 0s 4296KB
stdin
Standard input is empty
stdout
7