I have string
string s1="5 2 13 * +" //as prefix expression.
I want to obtain reversed of above matrix like this.
"+ * 13 2 5"
I have tried stringstream but it make "+ * 31 2 5"
and I lost my "13"
and I gets "31"
. This not good my computation.
How can I do? For helping thanks.