Thursday, October 15, 2015

String Reverse in C - Working Code

#include<stdio.h>
#include<string.h>
void main()
{
    char str[100], temp;
    int i,j = 0;
    printf("\nEnter the string: ");
    gets(str);
    i = 0;
    j = strlen(str) - 1;
    while(i < j)
    {
       temp = str[i];
       str[i] = str[j];
       str[j] = temp;
       i++;
       j--;
    }
    clrscr();
    printf("\nReverse string is :%s", str);
    getch();
}

To Compile Press Alt+f9 
To Run Press Ctrl+f9

Output:


No comments:

Post a Comment