type casting char to int in cpp code example
Example 1: char to int c++
int x = (int)character - 48;
Example 2: char* to int in cpp
int x = std::stoi("42")
Example 3: c convert char to int
int i = (int)(c - '0');
int x = (int)character - 48;
int x = std::stoi("42")
int i = (int)(c - '0');