Wanted to add infix to postfix conversion program using stack in c #86

Closed
opened 2026-01-29 15:03:06 +00:00 by claunia · 1 comment
Owner

Originally created by @UG-SEP on GitHub (Apr 8, 2021).

Hey,
I saw there is no program related to infix to postfix conversion program can i add
Example
Input: a+b * c
Output: abc * +
Please assign me
Thanks

Originally created by @UG-SEP on GitHub (Apr 8, 2021). Hey, I saw there is no program related to infix to postfix conversion program can i add Example Input: a+b * c Output: abc * + Please assign me Thanks
claunia added the enhancement label 2026-01-29 15:03:06 +00:00
Author
Owner

@Panquesito7 commented on GitHub (Apr 8, 2021):

There's already an Infix to Postfix algorithm here. You can create a Postfix to Infix algorithm, though. 🙂

@Panquesito7 commented on GitHub (Apr 8, 2021): There's already an [Infix to Postfix](https://github.com/TheAlgorithms/C/blob/master/conversions/infix_to_postfix.c) algorithm here. You can create a Postfix to Infix algorithm, though. 🙂
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#86