In this section, you will study how to remove spaces from the string. You can see in the given example, we have define the string and passed it into two character pointers. The expression p1 = ch, resets the pointer to start. If any punctuation character or whitespace character is found in the *p1 till p1, to be not equal to 0, then ++p1 moves over a whole character otherwise copy the character using the expression *p2++ = *p1++;. The *p2 =
0; appends the string terminator.
ispunct()- finds the punctuation character.
isspace()-finds the whitespace character.
Here is the code:
SPACESRE.C
#include <stdio.h>
|
Output will be displayed as:

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: C String Remove Spaces View All Comments
Post your Comment