Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Reverse a string

C++ For Loop: Exercise-85 with Solution

Write a program in C++ to reverse a string.

Pictorial Presentation:

C++ Exercises: Reverse a string

Sample Solution:-

C++ Code :

#include <iostream>
using namespace std;

void revOfString(const string& a);

int main()
{
    string str;
    cout << "\n\n Reverse a string:\n";
	cout << "----------------------\n";
	cout << " Enter a string: ";
    getline(cin, str);
    cout << " The string in reverse are: ";    
    revOfString(str);
    return 0;    
}

void revOfString(const string& str)
{
    size_t lengthOfString = str.size();

    if(lengthOfString == 1)
       cout << str << endl;
    else
    {
       cout << str[lengthOfString - 1];
       revOfString(str.substr(0, lengthOfString - 1));
    }
}

Sample Output:

 Reverse a string:                                                     
----------------------                                                 
 Enter a string: w3resource                                            
 The string in reverse are: ecruoser3w  

Flowchart:

Flowchart: Reverse a string

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to compute the sum of the digits of an integer using function.
Next: Write a program in C++ to count the letters, spaces, numbers and other characters of an input string.

What is the difficulty level of this exercise?