C Programming/ctype.h/ispunct

From Wikibooks, open books for an open world
Jump to navigation Jump to search

Synopsis[edit | edit source]

int isalnum(int c);

Description[edit | edit source]

This function returns true if c is a punctuation character. This includes any printing character that is not alphanumeric or a space character.

References[edit | edit source]