Question
Complete the body of the following string function. The function transforms the given string parameter by removing all of the characters that are blanks, and
Complete the body of the following string function. The function transforms the given string parameter by removing all of the characters that are blanks, and sliding the non-blank characters to the left to fill any removed blank characters.
For example, the string s = "how are you today" would become s = "howareyoutoday".
The solution should be in the same memory locations are the original string, which will not be a problem, since the solution cannot be longer than the original string.
You MUST NOT use the square-bracket notation in your function. You should make your function as efficient as possible.
You must write this function "from scratch". You MUST NOT use any library functions.
void squeezeOutBlanks ( char *s )
{
}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started