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
1 Posted Topic
Re: 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; |
The End.