The output of the above program is given below:
The source code of the above output is:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include<conio.h> | |
#include<string.h> | |
int main() | |
{ | |
char s[100], temp; | |
int i,j,l; | |
printf("enter the string whose reverse order is to be find\n"); | |
gets(s); | |
l=strlen(s); | |
for(i=0;i<=l/2;i++) | |
{ | |
for (j=l-1;j>=l/2;j--) | |
{ | |
if(i+j==l-1) | |
{ | |
temp=s[j]; | |
s[j]=s[i]; | |
s[i]=temp; | |
} | |
} | |
} | |
printf("the reverse string is %s",s); | |
getch(); | |
} |
0 comments :
Post a Comment