is char c++ code example
Example 1: char c++
isdigit() - Check if character is decimal digit
isalpha() - Check if character is alphabetic
isblank() - Check if character is blank
islower() - Check if character is lowercase letter
isupper() - Check if character is uppercase letter
isalnum() - Check if character is alphanumeric
Example 2: isalpha c++
char test='a';
cout<<isalpha(test);