Name
ispunct function — Tests for a punctuation character
Synopsis
int ispunct(int c)
The ispunct
function
returns true (nonzero) for a punctuation character, that is, any
printable character (isprint
)
other than space ('
') and
alphanumeric characters (isalnum
).