#include #include #include #include using namespace std; int main() { vector iv(8); fill(iv.begin(), iv.end(), 8); copy(iv.begin(), iv.end(), ostream_iterator(cout, " ")); cout << '\n'; } // Displays: 8 8 8 8 8 8 8 8