sprintf 썸네일형 리스트형 문자열과 숫자형 변환 가끔 문자열과 숫자열을 서로서로 바꿔서 사용하거나 문자열에 숫자를 집어넣어서 표기 해야 하는 때가 종종(꽤 많이..ㅋ) 발생하게 되죠? 한동안 많이 버벅 였지만, 다른 사람들은 버벅이지 말라고 정리를 하게 되었습니다ㅎㅅㅎ C Style #include #include int main(){ /* 문자 → 숫자 */ char *testChar1 = "12345"; char *testChar2 = "abcde"; int testInt1; int testInt2; testInt1 = atoi(testChar1); testInt2 = atoi(testChar2); printf("문자 : %s\n", testChar1); printf("숫자: %d\n", testInt1); printf("\n"); printf(".. 더보기 이전 1 다음