October 1999
Beginner
304 pages
7h 11m
English
Copies the elements of one container into a second container.
#include <algorithm> ostream_iterator<int> ofile( cout, " " ); copy( vec.begin(), vec.end(), ofile ); vector<string> target( svec.size() ); copy( svec.begin(), svec.end(), target.begin() );
Read now
Unlock full access