Structure C++ Tutorial

#include 
#include 
struct Employee {
  char title [50];
  int year;
};
int main ()
{
  char buffer[50];
  Employee aEmployee;
  Employee * pEmployee;
  pEmployee = & aEmployee;
  cout << "Enter title: ";
  cin.getline (pEmployee->title,50);
  cout << "Enter year: ";
  cin.getline (buffer,50);
  pEmployee->year = atoi (buffer);
  cout << "\nYou have entered:\n";
  cout << pEmployee->title;
  cout << " (" << pEmployee->year << ")\n";
  return 0;
}
Enter title: Enter year:
You have entered:
(^CTerminate batch job (Y/N)? n