문자열이 숫자인지 문자인지 판별할 때나 문자열로 된 숫자를 int 형태로 바꿀 때 쓴다.
s.atoi(c_str())
문자열이 문자라면 0을 return하고 숫자라면 숫자로 return한다.
int main() { string s = "1234"; string s2 = "hihi"; cout << atoi(s.c_str()) << "\n"; cout << atoi(s2.c_str()) << "\n"; } >> 출력: 1234 0