그 외의 변환 함수 : atoi, atol, atof #include #include #include int main(void) { char str[20]; printf("정수 입력 : "); scanf("%s", str); printf("%d \n", atoi(str)); printf("실수 입력 : "); scanf("%s", str); printf("%g \n", atof(str)); return 0; } 더보기 이전 1 ··· 139 140 141 142 143 144 145 ··· 176 다음