Basically, I need to convert an apstring to an integer and this is how I thought it was done
apstring example = "45";
int number;
number = atoi(example_c.str());
But clearly that's not it because it's not working. Any thoughts? Thanks
apstring example = "45";
int number;
number = atoi(example_c.str());
But clearly that's not it because it's not working. Any thoughts? Thanks