[C언어 소스] atoll 함수 사용 예제 코드 //C언어 표준 라이브러리 함수 사용법 가이드//long long atoll(const char *nptr); 정수 표현의 문자열로 long long 형식 값을 구함//정수 표현의 문자열을 정수 값으로 변환하여 출력 #include #include int main(void){ printf("%lld\n",atoll("12345678901234567")); printf("%lld\n",atoll("-12345678901234567")); printf("%lld\n",atoll("12345678901234567ab")); printf("%lld\n",atoll("ab12345678901234567")); return 0;}출력12345678901234567-1..