1. This lab is designed to give you practice working with linked lists.
    The pointer variable mylist (in the main function) points to the first element in the linked list. A function make_a_list builds the linked list. Three other functions: print_list, add_at_front and add_at_back, are not complete. The calls to the other functions are alreadty given in the main program (some are commented out). Your assignment is to complete these functions.
  2. The source file: lists.cc
  3. Understand Each of the List Functions..
  4. What you have to do: