Why we need to use # include < ctype.h >?
# include < ctype.h >: All the character functions require
ctype.h header file. The following lists are some function of ctype.
islower(c) It returns True if C is a lowercase
letter otherwise False.
isupper(c) It returns True if C is an uppercase
letter otherwise False.
Etc.