Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
30% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
1 Commented Post
0 Endorsements
Ranked #107.55K
~2K People Reached
Favorite Forums
Favorite Tags
c x 1

1 Posted Topic

Member Avatar for varun51

[CODE]#include<conio.h> char* reverse(char *s,int start,int last){ char temp; if(start>=last){ return s; }else{ temp = s[start]; s[start]=s[last]; s[last]=temp; reverse(s,start+1,last-1); } } main(){ char *s="visha"; clrscr(); s = reverse(s,0,strlen(s)-1); printf("\n ====> %s lenght : %d ",s,strlen(s)); }[/CODE]

Member Avatar for Amangpt01
0
2K

The End.