What do you mean? Basically output a message
string text;
cout<<"Enter a text:";
cin>>text;
when someone or you enter a text it reverse the element of the text so you can read the text backward instead of forwards.
If so Yes there is a way you can do that and it easy.
I don't think there is a function for this so you probably have to make one. Using
char text[number_here]
is easier. You just use a loop, that starts from the end of the array and ends when it becomes 0 (zero) and you copy the elements from text to text_reverse or any other variable.