IN C++
Part 1: Static Stack In this part, you are going to design a stack of characters. Assume a simple static array implementation. Complete the code below as specified by the comments below const int MAX 5; // define an alias for the element type class Stack private:
OR
OR