Quick Question
How do you convert a string of numbers to int?
For example:
I want to take what is in foo and put it into number.
For example:
std::string foo = "123456";
int number = 0; I want to take what is in foo and put it into number.
