ENCHTERP 0 Newbie Poster

vector< vector<char> > VecGrid;

vector< vector<char> > VecGrid(3, vector<char>(15,'O'));

Hello I have created a 2d-vector 


I have no problems filing this vector.  But the issue I am having is that I want to extract 
a specific row of this 2D vector (say the 2nd) and store it as a 1d vector.  What would be the best way 
to do this?  Can I use the copy command and if so how do I do that?