CS245 - CS II Spring 1997 LAB 13

Due by the end of lab:


Write a program that


  1. reads in five characters
  2. places them in a stack (implemented as a linked list - Use the include files below)
  3. remove the next to last element placed in the stack
  4. and displays the entire list of elements in reverse order
#include "Asserts.cpp"
#include "ListLink.cpp"
#include "stacks.cpp"
The .H and .CPP files are found on \\JARING\CS245 in the folder Stacks