Here is the source code of the C++ program which demonstrates the generate() algorithm. The C++ program is successfully compiled and run on a Linux system. The program output is also shown below.
/*
* C++ Program to Demonstrate the generate() Algorithm
*/
#include <iostream>
#include <algorithm>
#include <iterator>
#include <vector>
using namespace std;
static int i = 1;
int ret() {
return i++;
}
int main() {
vector<int> v(10);
std::generate(v.begin(), v.end(), ret);
std::cout << "Vector v : ";
std::copy(v.begin(), v.end(), std::ostream_iterator<int>(std::cout, " "));
std::cout << "\n";
}
$ gcc test.cpp $ a.out Vector v : 1 2 3 4 5 6 7 8 9 10