how to convert string char to int in c++ code example
Example 1: char to int c++
int x = (int)character - 48;
Example 2: convert char to int c++
int x = character - '0'
int x = (int)character - 48;
int x = character - '0'