/infix-to-postfix-using-stack

The main should take a string as input from user, convert it to postfix notation using infixToPostfix(), and then call evaluatePostfix(). Cases that must be handled in the program - Single digit numbers - Multi digit numbers - Brackets - Floating point numbers - Negative numbers

Primary LanguageC

infix-to-postfix-using-stack

The main takes a string as input from user, convert it to postfix notation using infixToPostfix(), and then call evaluatePostfix(). Cases that are handled in the program

  • Single digit numbers
  • Multi digit numbers
  • Brackets
  • Floating point numbers
  • Negative numbers