Reverse any String in C

Advertisements

Prev Tutorial Next Tutorial

Reverse any String Program in C

Reverse of String means reverse the position of all character of any String. For example reverse of porter is retrop.

Program to Reverse any String in C

#include<stdio.h>
#include<conio.h>
#include<string.h>

void main()
{
 char str[100],temp;
 int i,j=0;
 clrscr();
 printf("Enter any the string :");
 gets(str);  //  gets function for input string
 i=0;
 j=strlen(str)-1;
  while(i<j)
   {
   temp=str[i];
   str[i]=str[j];
   str[j]=temp;
   i++;
   j--;
   }
 printf("Reverse string is :%s",str);
 getch();
}

Output

Enter any the string  : hitesh
Reverse string is : hsetih

Explanation Of Program :

Firstly find the length of the string using library function strlen().

Code

j = strlen(str)-1;

Suppose we accepted String "hitesh" then

Code

j = strlen(str)-1;
  = strlen("hitesh") - 1
  = 7 - 1
  = 6

As we know String is charracter array and Character array have character range between 0 to length-1. Thus we have position of last character in variable 'j'.Current Values of 'i' and 'j' are :

Code

i = 0;
j = 6;

'i' positioned on first character and 'j' positioned on last character. Now we are swapping characters at position 'i' and 'j'. After interchanging characters we are increment value of 'i' and decrements value of 'j'.

Code

while(i<j)
     {
     temp   = str[i];
     str[i] = str[j];
     str[j] = temp;
     i++;
     j--;
     }

If i crosses j then process of interchanging character is stopped.


Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements