how to convert char to int c++ code example
Example 1: convert char to int c++
char a = '6';
int n1 = a - '0';
int n2 = a - 48;
int n3 = std::stoi(&a);
Example 2: char to int c++
int x = (int)character - 48;
Example 3: integer to char c++
int i = 3;
char c = '3';
what you need to do is, by adding i to '0'. The reason why it works is because '0' actually means an integer value of 48. '1'..'9' means 49..57. This is a simple addition to find out corresponding character for an single decimal digit integer:
i.e. char c = '0' + i;
If you know how to convert a single decimal digit int to char, whats left is how you can extract individual digit from a more-than-one-decimal-digit integer
it is simply a simple math by making use of / and %
int i = 123 % 10;
int j = 123 / 10;
The logic left is the homework you need to do then.
Example 4: char* to int in cpp
int x = std::stoi("42")
Example 5: c convert char to int
int i = (int)(c - '0');
Example 6: converting char to integer c++
int x = '9' - 48;