<ctype.h>
Mostly, internally, the ASCII value of the character is passed as argument and returns int
other than zero if true, else return 0.
isprint() - Printable character is not a control character, they can be seen on screen
iscntrl() - Control character like ‘\n’ and ‘\r’
islower() - Check lower-case
isupper() - Check uper-case
isgraph() - Graphic character other than space
ispunct() - Punctuation character
isdigit() - Numeric character
isalpha() - Alphabet character
toupper() - Converts character to upper case
tolower() - Converts character to upper case
<math.h>
Library FucntionsLink: https://www.geeksforgeeks.org/c-library-math-h-functions/
<string.h>