Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
C Programming
remove spaces from a string and Complexity
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
[QUOTE="Richard Heathfield, post: 2509045"] Joe Wright said: Consider a string that ends in a space. while(*s == ' ') ++s; will move s onto the null terminator, which is then copied to the place pointed to by d, with *d++ = *s++ - but now s has moved *past* the null terminator, and you're in big trouble thereafter. Always Check Edge Cases! [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
C Programming
remove spaces from a string and Complexity
Top