I want to add the first digit of a string 111
to the integer x = 0
so that it equals
x = 0 + 1 = 1
The following code takes the character 1
instead of the integer 1
:
int x = 0;
string str = "111";
x += str[1];
std::stoi
did not work either:
x += std::stoi(str[1]);