0% found this document useful (0 votes)
34 views1 page

Ctype H

Ctype is a library that provides functions for character manipulation. Key functions include isupper(), islower(), isalpha(), isdigit(), and others that check for various character types such as alphanumeric, whitespace, and punctuation. The library helps in identifying and categorizing characters in programming.

Uploaded by

babbba48
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
34 views1 page

Ctype H

Ctype is a library that provides functions for character manipulation. Key functions include isupper(), islower(), isalpha(), isdigit(), and others that check for various character types such as alphanumeric, whitespace, and punctuation. The library helps in identifying and categorizing characters in programming.

Uploaded by

babbba48
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

Ctype is a library that stores functions for manipulating Chars:

functions:

##>>isupper()

##>>islower()

##>>isalpha()

##>>isdigit()

##>>isalnum()

##>>isspace()

##>>isxdigit() is it hexa decimial

##>>ispunct() is it a punctuatino charcter

##>>isprint() is it printiable

##>>iscntrl() is it a control char (\n,\t...)

##>>isgraph()

You might also like