C++Include a stack class but DO NOT use STL stack. Please do notsubmit code that looks similar towww.cplusplus.com/forum/beginner/192479/
Parenthesis Balance Problem Description Compilers require parenthesis, braces, brackets, and angled brackets to be balanced. This means that every time one is opened it must also be close AND everything between the two are also balanced. Balanced: (00) oO100) (C00 Unbalanced: (DI This is easily determined by creating a stack and reading the input. When an open parenthesis is found, push it to onto the stack.
OR
OR