Infix to postfix conversion | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Infix to postfix conversion

Q. 8+(7-9)*2 change it in postfix using Python programs

17th Jun 2021, 8:54 AM
Kriti Kumari
Kriti Kumari - avatar
6 Answers
+ 3
what do you mean؟
17th Jun 2021, 9:50 AM
aspad🇮🇷
aspad🇮🇷 - avatar
+ 2
Can you explane more
17th Jun 2021, 9:51 AM
aspad🇮🇷
aspad🇮🇷 - avatar
+ 1
infix and postfix (and prefix) notations are not "part of C/C++": they are matematical expression notation standards: infix notation: https://en.m.wikipedia.org/wiki/Infix_notation postfix notation (RPN: Reverse Polish Notation): https://en.m.wikipedia.org/wiki/Reverse_Polish_notation prefix notation (PN: Polish Notation): https://en.m.wikipedia.org/wiki/Polish_notation
17th Jun 2021, 2:05 PM
visph
visph - avatar
0
8+(7-9)*2 is in infix order you have to change it in postfix order that is 879-2*+
17th Jun 2021, 11:06 AM
Kriti Kumari
Kriti Kumari - avatar
0
You have to do push and pop operation using the program and convert it in postfix order.
17th Jun 2021, 11:09 AM
Kriti Kumari
Kriti Kumari - avatar
0
I can't understand 🤔 what is infix & postfix
17th Jun 2021, 11:14 AM
Yash Wable 🇮🇳
Yash Wable 🇮🇳 - avatar