Does anyone know of a C implementation of the shunting yard algorithm?
For those of you who do not know, the shunting yard algorithm is able to convert expressions written in Infix notation (hard to work with dynamically on a computer) to Reverse Polish Notation (RPN) which is very easy to work with (more info about the algorithm and RPN, http://en.wikipedia.org/wiki/Reverse_Polish_Notation. Thanks for all of your help.