C Ctype.h - Programiz

Tutorials Courses Python JavaScript TypeScript SQL HTML CSS C C++ Java R Ruby RUST Golang Kotlin Swift C# DSA

Become a certified C programmer.

ENROLL

Popular Tutorials

Data Types in C C if...else Statement C for Loop Arrays in C Programming Pointers in C Start Learning C

Popular Examples

Check odd/even number Find roots of a quadratic equation Print Pyramids and Patterns Check prime number Print the Fibonacci series Explore C Examples

Reference Materials

string.h math.h ctype.h View all Programiz Pro Logo

Created with over a decade of experience.

  • Learn
  • Practice
  • Compete
Learn Python Learn HTML Learn JavaScript Learn SQL Learn DSA Learn C Learn C++ Learn Java View all Courses on Programiz Pro Logo Python Basics Python Intermediate C++ Basics C++ Intermediate C++ OOP C Programming Java Basics Java Intermediate Java OOP View all Courses on Programiz Pro Logo Python Challenges JavaScript Challenges Java Challenges C++ Challenges C Challenges View all Challenges on Programiz Pro Logo Learn Practice Compete

Certification Courses

Created with over a decade of experience and thousands of feedback.

Learn Python Learn HTML Learn JavaScript Learn SQL Learn DSA View all Courses on Programiz Pro Logo Learn C Learn C++ Learn Java Python JavaScript TypeScript SQL HTML CSS C C++ Java More languages

Become a certified C programmer.

Try Programiz PRO!

Popular Tutorials

Data Types in C C if...else Statement C for Loop Arrays in C Programming Pointers in C Start Learning C All C Tutorials

Reference Materials

string.h math.h ctype.h View all Python JavaScript C C++ Java R Kotlin

Become a certified C programmer.

Try Programiz PRO!

Popular Examples

Check odd/even number Find roots of a quadratic equation Print Pyramids and Patterns Check prime number Print the Fibonacci series All C Examples C <ctype.h>

The C <ctype.h> header file declares a set of functions to classify (and transform) individual characters. For example, isupper() checks whether a character is uppercase or not.

Search Functions

C isalnum()

checks alphanumeric character

C isalpha()

checks whether a character is an alphabet or not

C iscntrl()

checks control character

C isdigit()

checks numeric character

C isgraph()

checks graphic character

C islower()

checks lowercase alphabet

C isprint()

checks printable character

C ispunct()

checks punctuation

C isspace()

check white-space character

C isupper()

checks uppercase alphabet

C isxdigit()

checks hexadecimal digit character

C tolower()

converts alphabet to lowercase

C toupper()

converts to uppercase alphabet

Từ khóa » Thư Viện Ctype.h