반응형
Header : stdlib.h or ctype.h
1. char -> int 변환
* Fuctnion : int atoi(const char *str);
* 문자일 경우(숫자가 1자리) '0'을 빼는걸로 가능
2. int -> char 변환
* Fuctnion : char * itoa ( int value, char * str, int base );
* 문자일 경우(숫자가 1자리) '0'을 더하는걸로 가능
* Function 2 : int sprintf (const char s, const char * format, ... );
추가적으로 char szStr[7] = "abcdef"; 라는 변수가 있을 때 szStr + 2를 하면 "cdef"만 출력
1. char -> int 변환
* Fuctnion : int atoi(const char *str);
* 문자일 경우(숫자가 1자리) '0'을 빼는걸로 가능
2. int -> char 변환
* Fuctnion : char * itoa ( int value, char * str, int base );
* 문자일 경우(숫자가 1자리) '0'을 더하는걸로 가능
* Function 2 : int sprintf (const char s, const char * format, ... );
추가적으로 char szStr[7] = "abcdef"; 라는 변수가 있을 때 szStr + 2를 하면 "cdef"만 출력
반응형
'Devlopment > C,C++,Ruby,Python' 카테고리의 다른 글
[VC++] 모달/모덜리스 대화상자 (0) | 2010.02.23 |
---|---|
[VC++] 변수 Naming Rule (0) | 2009.04.06 |
PROC, ORACLE에 Query문에서 공백문자 처리 (0) | 2009.04.06 |
C Comment (1) | 2009.03.31 |
RPOC 조건구문 (1) | 2009.03.24 |
time 관련 (0) | 2009.03.02 |
PROC 사용 방법 (0) | 2009.02.26 |
[Ruby on Rails] 라우팅 설정 (0) | 2008.07.22 |
[Ruby on Rails] 레일스의 철학 & 네이밍 규칙 (0) | 2008.07.22 |
C++ 기본 형태 (0) | 2008.06.25 |