-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path7_ReversingString.cpp
More file actions
60 lines (44 loc) · 1.29 KB
/
7_ReversingString.cpp
File metadata and controls
60 lines (44 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#include <iostream>
#include <string.h>
using namespace std;
// function definition of the revstr()
void revstr(char *str1) {
// declare variable
int i, len, temp;
len = strlen(str1);
// use strlen() to get the length of str string
// use or loop to iterate the string
for(i = 0;i < len/2;i++)
{
//temp variable use to temporary hold the string
temp = str1[i];
str1[i] = str1[len - i - 1];
str1[len - i - 1] = temp;
}
}
int main()
{
char str[50] = "Priyanka";
cout << "Before reversing the string: " << str;
revstr(str);
cout<< "\nAfter reversing the string: " << str;
return 0;
}
// Mathod 2..We can also reverse the string using some build in functions:-
// #include <iostream>
// #include <string.h>
// #include <algorithm>
// using namespace std;
// int main()
// {
// // declare string
// string str = "PrepInsta";
// cout << "Before Reversal: " << str;
// // reverse which is defined under the header file
// // algorithm #include
// // str.begin() denotes the start
// // and str.end() denotes end
// reverse(str.begin(), str.end());
// cout << "\nAfter Reversal: "<< str;
// return 0;
// }