x

C – islower() function

Prev     Next

islower() function in C:


  • islower( ) function in C language checks whether given character is lower case or not. Syntax for islower( ) function is given below.

int islower( int x );


Example program for islower() function in C:

Output:

Enter any character
a
Entered character is lower case character

Other Int, Char validation functions in C programming language:

  • All “int, char validation functions” used in C programming language are given below. “ctype.h” header file support all these functions in C language.
  • Click on each function name below for detail description and example programs.
Functions Description
isalpha() checks whether character is alphabetic
isdigit() checks whether character is digit
isalnum() Checks whether character is alphanumeric
isspace() Checks whether character is space
islower() Checks whether character is lower case
isupper() Checks whether character is upper case
isxdigit() Checks whether character is hexadecimal
iscntrl() Checks whether character is a control character
isprint() Checks whether character is a printable character
ispunct() Checks whether character is a punctuation
isgraph() Checks whether character is a graphical character
tolower() Checks whether character is alphabetic & converts to lower case
toupper() Checks whether character is alphabetic & converts to upper case

Prev     Next



Like it? Please Spread the word!