Ask Question
25 October, 21:17

Write a function called printbackwards () that will work with a c + + string

+3
Answers (1)
  1. 25 October, 23:22
    0
    There is a standard reverser that will work for this:

    void printbackwards (string s)

    {

    reverse (s. begin (), s. end ());

    cout << s;

    }
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Write a function called printbackwards () that will work with a c + + string ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers