First page Back Continue Last page Graphics
Separation String
The second parameter on ostream_iterator specifies a value to be written after each element.
e.g. copy(v.begin( ), v.end( ), ostream_iterator<int>(cout, " "));
The " " is inserted after each element printed providing nice spacing in the output.