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