CS245 - CS II Spring 1997 LAB 13
Due by the end of lab:
Write a program that
- reads in five characters
- places them in a stack (implemented as a linked list - Use the include files below)
- remove the next to last element placed in the stack
- 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