C 언어 atol by SpeeDr00t 2016. 7. 9. 반응형 long atol(const char *str)*endptr, int base) #include <stdlib.h> long atol(const char *str) { return(strtol(str, (char **)NULL, 10)); } 반응형 공유하기 게시글 관리 장경칩연구소 : [ Black Falcon 대장 ] 'C 언어' 카테고리의 다른 글 atoi (0) 2016.07.09 strtol (0) 2016.07.09 strtoll (0) 2016.07.09 atoll (0) 2016.07.09 calloc (0) 2016.07.09 관련글 atoi strtol strtoll atoll