Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 생활코딩
- Math
- 정수론
- Cleancode
- JavaScript
- 종만북
- 따라하면서 배우는 C언어
- DP
- 백준
- programmers
- php
- Algorithm
- 따배씨
- greedy
- server
- sorting
- 인프런
- web
- C
- Algospot
- BASIC
- 따라하며 배우는 C언어
- dfs
- C언어
- BFS
- graph
- String
- BOJ
- Python
- udemy
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 11.11 문자열을 숫자로 바꾸는 방법들 본문
따배씨 - 따라하며 배우는 C언어
11강 문자열 함수들
11.11 문자열을 숫자로 바꾸는 방법들
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char* argv[]){
/*
string to integer, double, long
atoi(), atof(), atol()
*/
if (argc < 3)
printf("Wrong Usage of %s\n", argv[0]);
else{
int times = atoi(argv[1]);
for (int i = 0; i < times; i++)
puts(argv[2]);
}
return 0;
}
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char* argv[]){
/*
string to integer, double, long
atoi(), atof(), atol()
*/
if (argc < 3)
printf("Wrong Usage of %s\n", argv[0]);
else{
printf("Sum = %d\n", atoi(argv[1]) + atoi(argv[2]));
}
return 0;
}
- atoi() 는 10진수만 변환 가능
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char* argv[]){
/*
string to integer, double, long
atoi(), atof(), atol()
*/
char str1[] = "1024Hello";
char* end;
long l = strtol(str1, &end, 10);
printf("%s %ld %s %d\n", str1, l, end, (int)*end);
// 1024Hello 1024 Hello 72
return 0;
}
strtol(str1, &end, 10);
- str1 의 문자열을 Long type 으로 변환을 하다가 변환 할 수 없는 'H' 를 만나면 그 문자의 pointer 를 end 에 저장
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char* argv[]){
/*
string to long, unsigned long, double
strtoi(), strtoul(), strtod()
*/
char str2[] = "10FFHello";
char* end;
long l = strtoul(str2, &end, 16);
printf("%s %ld %s %d\n", str2, l, end, (int)*end);
// 1024Hello 1024 Hello 72
return 0;
}
strtoul(str2, &end, 16);
- 10FF 까 숫자로 변환
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char* argv[]){
/*
numbers to strings
Use sprintf() insted of itoa(), ftoa()
*/
char temp[100];
sprintf(temp, "%x", 10);
// a
puts(temp);
return 0;
}
sprintf(temp, "%x", 10);
- 10을 문자열로 변환하여 temp 에 저장
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
http://blog.naver.com/atelierjpro
http://www.inflearn.com/course/following-c
'Language > C' 카테고리의 다른 글
[따배씨] 12.2 객체와 식별자, L-value 와 R-value (0) | 2021.06.13 |
---|---|
[따배씨] 12.1 메모리 레이아웃 훑어보기 (0) | 2021.06.13 |
[따배씨] 11.10 명령줄 인수 (0) | 2021.06.10 |
[따배씨] 11.9 문자함수 ctype.h 를 문자열에 사용하기 (0) | 2021.06.10 |
[따배씨] 11.8 문자열의 포인터를 정렬하기 (0) | 2021.06.10 |
Comments