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