List C++ Tutorial

#include 
#include 
#include 
#include  // for find
using namespace std;
int main()
{
  char x[5] = {'a', 'r', 'e', 'q', 't'};
  list list1(&x[0], &x[5]);
  // Search for the first occurrence of the letter e:
  list::iterator where = find(list1.begin(), list1.end(), 'e');
  list::iterator next = where;
  ++next;
  cout << *next << endl;
  return 0;
}
q