fork download
  1. #include <vector>
  2. #include <iostream>
  3.  
  4. int main() {
  5. std::vector<int> bv;
  6. bv.push_back(0);
  7. bv.push_back(1);
  8.  
  9. std::cout << &bv[1] << std::endl;
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0s 3472KB
stdin
Standard input is empty
stdout
0x980e01c