from char to int c++ code example
Example 1: char to int c++
int x = (int)character - 48;
Example 2: converting char to integer c++
int x = '9' - 48;
// x now equals 9 as an integer
Example 3: C++ int to char*
std::string s = std::to_string(number);
char const *pchar = s.c_str(); //use char const* as target type
Example 4: converting char to int in c++
#include <sstream>
using namespace std;
int main()
{
stringstream str;
str << "1";
double x;
str >> x;
}