#include #include #include struct Stack { char stk[50][50]; int top; }; typedef struct Stack stack; void push(