+ 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 -
2 Respostas
+ 3
https://code.sololearn.com/cD46ZE5whyRr/?ref=app
A C++ Code to convert :
a/(b+c)*d-e --> abc+/d*e- .
________________________________________