Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
0 Endorsements
Ranked #107.55K
~5K People Reached
Favorite Forums
Favorite Tags
c++ x 1

1 Posted Topic

Member Avatar for bops

char *s; s=(char*)malloc(10); cin>>s; while(*s!='\0'){++s;} *s='p'; ++s; *s='\0'; --s; while(*s!='\0'){--s;} ++s; cout<<s;

Member Avatar for NathanOliver
0
5K

The End.