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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!