How to use ispunct function in C programming?
The ispunct function in C programming checks whether a character is a punctuation character or not. The default C locale classifies the characters !”#$%&'()*+,-./:;<=>?@[\]^_`{|}~ as punctuation. It is declared in ctype.h and takes one argument in the form of integer and returns the value of type int. If the character passed is a punctuation character, […]
How to use ispunct function in C programming? Read More »