What happens when you attempt to compile and run the following code?
 #include 
 #include 
int main ()
{
 std::vector
for(int i = 10; i>0; i??)
{
v1.push_back(i);
}
 std::vector
int sum = 0;
while(it != v1.end())
{
sum+=it++;
}
 std::cout<<*v1.erase(v1.begin(),v1.end()?3)<<" "<    return 0;  }
Submit