Test it by creating a DRIVER/Test file with int main, and Test the stack class and its basic functionality.
Program
Write a stack for string data with pointers and linked lists.
Hint: Add(push) the new element between the head and the first link.
Remove(pop) the first element..
Stop when head = null.
Test with 10 words... able, bread, corn, dog, elephant, frog, ground, House, Italy, Jam
Test all Functionality.