From f0e7e048bfde35417566a69f5b4ca3b85532fbb2 Mon Sep 17 00:00:00 2001 From: Mohit Arora <32641304+mohitarora3@users.noreply.github.com> Date: Sat, 3 Oct 2020 13:41:56 +0000 Subject: [PATCH] Update infix_to_postfix.cpp --- infix_to_postfix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } -