C++ convert char to an int code example
Example 1: char* to int in cpp
int x = std::stoi("42")
Example 2: converting char to integer c++
int x = '9' - 48;
// x now equals 9 as an integer
int x = std::stoi("42")
int x = '9' - 48;
// x now equals 9 as an integer