c언어 string 문자형을 int 형으로 변환하기

프로그래밍/C, C++|2021. 2. 24. 10:15
반응형

str 문자열에 숫자만 있을 경우 아래와 같은 코드를 사용하여 int 를 입력할 곳에 넣을 수 있습니다.

 

(int) strtol(str, (char **)NULL, 10)

 

 

[출처] https://stackoverflow.com/questions/7021725/how-to-convert-a-string-to-integer-in-c

반응형

댓글()