diff --git a/infix_to_postfix.cpp b/infix_to_postfix.cpp index 5ffa1d3..18dbd8d 100644 --- a/infix_to_postfix.cpp +++ b/infix_to_postfix.cpp @@ -56,6 +56,7 @@ stack::stack() top=-1; arr=new char[MAXSIZE]; } + void stack::push(char &ele) { /* @@ -210,4 +211,3 @@ int main() getch(); } -