How to check if a given character is a number/letter in C++ code example
Example: c++ check if char is number
char c = '1';
bool result = isdigit(c);
cout << result << endl; //1
char c = '1';
bool result = isdigit(c);
cout << result << endl; //1