c++ characters to numbers code example
Example 1: char to int c++
int x = (int)character - 48;
Example 2: converting char to int in c++
#include <sstream>
using namespace std;
int main()
{
stringstream str;
str << "1";
double x;
str >> x;
}