mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-04-18 19:39:34 +00:00
[PR #1313] Created postfix to infix converter #1914
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Original Pull Request: https://github.com/TheAlgorithms/C/pull/1313
State: closed
Merged: No
Description of Change
This postfix to infix converter converts postfix expression to infix and returns it , if any checks are not passed during conversion it populates relevant message for that. And if this condition doesn't apply it checks output with expected output and if that is wrong it aborts the program.
References
issue no. #1299
Checklist
Notes: This postfix to infix converter converts postfix expression to infix and returns it if all the checks are passed , at the end final evaluation of answer happens to check output is correct or not.