STL Algorithms Modifying Sequence Operations C++ Tutorial

#include 
#include 
#include 
using namespace std;
void show(const char *msg, vector vect);
int main()
{
  vector v;
  for(int i=0; i<10; i++) v.push_back(i);
  show("Original order: ", v);
  rotate(v.begin(), v.begin()+2, v.end());
  show("Order after rotating left two positions: ", v);
  return 0;
}
void show(const char *msg, vector vect) {
  cout << msg << endl;
  for(unsigned i=0; i < vect.size(); ++i)
    cout << vect[i] << endl;
}