Delete a character in a string in C
How to delete a character in a string
For example : ' School ' is the string and 'c ' is the word to be replaced, then the word would become 'shool ' . Similarly if we remove the letter ' o ' from the string ' school ', then the string would become ' schl ' removing all the ' o ' s present.The program for doing this in C.
Comments
Post a Comment