how to convert a character to integer in c++ code example
Example 1: c convert char to int
int i = (int)(c - '0');
Example 2: converting char to integer c++
int x = '9' - 48;
// x now equals 9 as an integer
Example 3: convert char to int c++
int x = character - '0'