blob: ef238ef52da524ae3f445dfef7c883998d987fc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include <vector.h>
#include <iostream.h>
#include <algo.h>
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<char>(cout));
cout << "\nFill of vector<char>:\n";
vector<char> cvec;
cvec.insert (cvec.begin(), 50, '/');
fill (cvec.begin()+1, cvec.end()-1, '-');
copy (cvec.begin(), cvec.end(), ostream_iterator<char>(cout));
cout << endl;
}
|