Advertisement
triclops200

stnsrietn

Nov 11th, 2011
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. #include <cstring>
  4. using namespace std;
  5. string s(string test){
  6.     string fin = test;
  7.     for(int a = strlen(test.c_str())-1;a>=0;a--)
  8.         fin += test[a];
  9.     return fin;
  10. }
  11. int main(){
  12.     cout<<s("Hello")<<endl;
  13. }
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement