Lab exercise programs in C plus plus
Please visit http://csprograms.in/ for more Computer Science programs.
Welcome..!!
Please visit
http://csprograms.in/
for more Computer Science programs.
Showing posts with label
reverse of string
.
Show all posts
Showing posts with label
reverse of string
.
Show all posts
Wednesday, 14 March 2012
14. C++ program to reverse the string .
# include < iostream>
# include < string>
int main()
{
char str1[50], str2 [50];
cout << “Enter the string:” ;
cin >> str1;
str2 = strrev ( str1);
cout << “strrev (str1) : “< < str2;
return 0;
}
Older Posts
Home
Subscribe to:
Posts (Atom)