• To practice writing solutions to problems in a clear and succinct way
Problem Write a program to create a Stack data structure that store integer data values. Your program should display a menu of choices to operate the Stack data structure. See the sample menu below:
Do not implement the stack with STL. The stack must be implemented using a fixed size array. The stack functions (i.e. push(), top(), pop(), isEmpty() ) should be implemented below the main() and prototyped above the main().