Wilf
0
Q:

string to int c

atoi(str) is unsafe

This is the prefered method:
(int)strtol(str, (char **)NULL, 10)
6
#include<string>
string str1 = "45"; 
string str2 = "3.14159"; 
string str3 = "31337 geek";

int myint1 = stoi(str1);
std::cout<<stoi(str1);
0

New to Communities?

Join the community