Hi,
I am trying to work out a simple code in C++.I am getting the input as a string and the output should be reversed.Some thing like this
input ="Glitters are Not gold"
output should be "gold Not are Glitters".
What i have done is get the string and stored it in a string variable and from there on i used Strrev().But its not working.Is there a good way of doing it.
Jegadees