Description: This program is Menu driven program to implement Stack. Primary Inputs: the numbers to be pushed on to the stack Primary Output: Stack Platform Used: Turbo C++ version 3.0, Borland International Inc. /*program to implement stack */ #include #include #include #define MAX 10 /*size of the Stack*/ struct stack { int arr[MAX]; }s; int TOP=-1; ...