STL Algorithms Modifying Sequence Operations C++ Tutorial

#include 
#include 
#include 
using namespace std;
bool IsEven (const int& nNumber)
{
    return ((nNumber % 2) == 0);
}
int main ()
{
    vector  v;
    for (int nNum = 0; nNum < 10; ++ nNum)
        v.push_back (nNum);
    // a copy of the sample vector
    vector  vecCopy (v);
    // use stable_partition on the vecCopy - maintains relative order
    stable_partition (vecCopy.begin (), vecCopy.end (), IsEven);
    for (size_t nItem = 0; nItem < vecCopy.size (); ++ nItem)
        cout << vecCopy [nItem] << ' ';
    return 0;
}