[C언어 소스] atol 함수 사용 예제 코드 //C언어 표준 라이브러리 함수 사용법 가이드//long atol(const char *nptr); 정수 표현의 문자열로 long 형식 값을 구함//정수 표현의 문자열을 정수 값으로 변환하여 출력 #include #include int main(void){ printf("%d\n",atol("12")); printf("%d\n",atol("-12")); printf("%d\n",atol("12abc")); printf("%d\n",atol("-12abc")); printf("%d\n",atol("abc12.34")); printf("%d\n",atol("-abc12.34")); return 0;} 출력12-1212-120 0 언제나 휴일 티스토리 바로가기 언..