Make a function in c++ . Which convert postfix to infix expression | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 8

Make a function in c++ . Which convert postfix to infix expression

postfix notation: a / ( b + c ) * d - e infix notation : a b c + / d * e -

20th Oct 2017, 8:19 AM
Kai
Kai - avatar
2 Respostas
+ 3
https://code.sololearn.com/cD46ZE5whyRr/?ref=app A C++ Code to convert : a/(b+c)*d-e --> abc+/d*e- . ________________________________________
20th Oct 2017, 3:47 PM
Kinshuk Vasisht
Kinshuk Vasisht - avatar
20th Oct 2017, 9:05 AM
Kartikey Sahu
Kartikey Sahu - avatar