Page 1 of 1

C-programming

Posted: Mon Mar 21, 2022 4:41 pm
by answerhappygod
C-programming
C Programming 1
C Programming 1 (39.05 KiB) Viewed 42 times
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.