convert string to in c++ code example
Example 1: convert stirng to int c++
int thing = std::stoi(string);
Example 2: c++ string to int
// EXAMPLE
std::string sStringAsString = "789";
int iStringAsInt = atoi( sStringAsString.c_str() );
/* SYNTAX
atoi( <your-string>.c_str() )
*/
/* HEADERS
#include <cstring>
#include <string>
*/