반응형

정수 표현의 문자열을 정수 값으로 변환하여 출력 3

[C언어 소스] atoll 함수 사용 예제 코드

[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..

[C언어 소스] atol 함수 사용 예제 코드

[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 언제나 휴일 티스토리 바로가기 언..

[C언어 소스] atoi 함수 사용 예제

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

반응형