// Using assignment operator to copy one // vector to other vect2 = vect1; //another way: // Copying vector by copy function copy(vect1.begin(), vect1.end(), back_inserter(vect2));