C-programming
Posted: Mon Mar 21, 2022 4:41 pm
C-programming
Strings in C Implement a function that converts all punctuation characters in a null-terminated string to a space character, The function changes the found punctuation characters inplace so that no dynamic allocation is needed. Hint stdlib provides useful character handling functions in ctype.h. ctype.h documentation also states different character classes, including punctuation characters.
Strings in C Implement a function that converts all punctuation characters in a null-terminated string to a space character, The function changes the found punctuation characters inplace so that no dynamic allocation is needed. Hint stdlib provides useful character handling functions in ctype.h. ctype.h documentation also states different character classes, including punctuation characters.