#include
using namespace std;
#include
#include
int tab1[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9};
int tab2[] = { 4, 5, 6, 7, 8 };
int tab3[] = { 4, 5, 6, 7,6 , 20 };
int main()
{
ostream_iterator< int > output( cout, " " );
cout << "Contenu de tab1: ";
copy( tab1, tab1 + 9, output );
cout<