mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-19 12:51:22 +01:00
346d84c900
git-svn-id: file:///srv/svn/repos/haiku/trunk/buildtools@9577 a95241bf-73f2-0310-859d-f6bbb57e9c96
21 lines
441 B
C++
21 lines
441 B
C++
#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;
|
|
}
|