= it creates vector (v1) with the final size of three integers
int t[] = {1,2,3,4,5,};
std::vector < int > v1 (t, t + 5); std::vector < int > v2 (v1); v1.resize (10); v2.reserve (10); = it creates vector (v2) with the final size of five integers = it creates vector (v1) with the final size of ten integers