#include #include #include main () { cout << "Fill of C array:\n"; char x[50]; fill (x, x+50, '/'); fill (x+1, x+49, '*'); copy (x, x+50, ostream_iterator(cout)); cout << "\nFill of vector:\n"; vector cvec; cvec.insert (cvec.begin(), 50, '/'); fill (cvec.begin()+1, cvec.end()-1, '-'); copy (cvec.begin(), cvec.end(), ostream_iterator(cout)); cout << endl; }