Answers for "reverse the string without using inbuilt function c++"

C++
2

reverse string efficient in cpp without using function

#include <iostream>
using namespace std;
int main()
{
    char str[] = "Reverseme";
    char reverse[50];
    int i=-1;
    int j=0;
         /*Count the length, until it each at the end of string.*/ 
          while(str[++i]!='');
           while(i>=0)
                    reverse[j++]=str[--i];
            reverse[j]='';
      cout<<"Reverse of  a string is"<< reverse;
      return 0;
}
Posted by: Guest on September-16-2020
-1

How to reverse a string in c++ using reverse function

#include <iostream>
//The library below must be included for the reverse function to work
#include<bits/stdc++.h> 
using namespace std;

int main() {
  
  string greeting = "Hello";
  //Note that it takes the iterators to the start and end of the string as arguments
  reverse(greeting.begin(),greeting.end());
  cout<<greeting<<endl;
}
Posted by: Guest on August-20-2021

Code answers related to "reverse the string without using inbuilt function c++"

Browse Popular Code Answers by Language