Ask Question

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

+1
Answers (1)
  1. 28 January, 19:58
    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?
Find an answer to your question 👍 “Write a function called printbackwards () that will work with a c + + string ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers