In k&r we have managed to create an RPN.
The exercise now is to:
Add commands for handling variables, (It's easy to provide twenty-six variables with single letter names.) Add a variable for the most recently printed value.
So this is meant to act somewhat like the Python interpreter, where we can do:
>>>5
>>>_ (where _ prints 5)
>>>_ + 5 (which prints 10)
or A = 5 _ + A (which prints 10)
and so on, but I'm not so sure about how I want to go about it in C, I just feel stumped, the RPN as is, is shown here: http://omploader.org/vNHZvYQ
Please help :)