Skip to content

Commit e3e4b47

Browse files
authored
String reversal using Recursion
1 parent 0eb5356 commit e3e4b47

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

stringrev.cpp

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#include <iostream>
2+
#include <algorithm>
3+
using namespace std;
4+
void reverse(string s)
5+
{
6+
if (s.size() == 0)
7+
return;
8+
string r = s.substr(1);
9+
reverse(r);
10+
cout << s[0];
11+
}
12+
int main(int argc, char const *argv[])
13+
{
14+
reverse("Binod");
15+
cout << endl;
16+
return 0;
17+
}

0 commit comments

Comments
 (0)