List C++ Tutorial

#include 
#include 
#include 
#include   // For reverse
using namespace std;
int main()
{
  char x[5] = {'a', 'b', 'c', 'd', 'e'};
  list list1(&x[0], &x[5]);
  reverse(list1.begin(), list1.end());
  list::iterator i;
  cout.precision(10);
  for (i = list1.begin(); i != list1.end(); ++i)
    cout << *i << endl;
  cout << endl;
  return 0;
}
e
d
c
b
a