일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 하이퍼레저패브릭
- #C++ has~a
- mac terminal command
- html id
- 토큰경제
- #3차원배열
- #자바상속#자바이즈어#is~a
- #CallByAddress
- html object
- html5 new tag
- #다차원포인터
- git flow
- #C++ 연산자함수오버로딩
- border-box
- html charset
- relative path
- #bubbleSort
- #binary
- #2차원배열
- hyperledger transaction
- #성적관리프로그램
- html plug-in
- html video
- #JAVASCRIPT
- #android activity
- html code
- docker example
- html multimedia
- html youtube
- #1차원배열
Archives
- Today
- Total
목록#아스키코드 (1)
A sentimental robot
atoi함수
#include #include void main() { int x; char buf[100]; strcpy_s(buf,"83"); // x = atoi(buf); > buf에 있던 문자 '83'을 int형으로 변환해서 x에 넣기 x = 0; x = buf[0]-48; // 56(문자'8'의 아스키코드)-48=8 x = x*10; // 80 x = x+buf[1]-48; // 80+51-48 = 83 printf("%s\n",buf); printf("%d\n",x); } #include #include int myAtoi(char s[]) { int i; int n; int sign; for(i = 0 ; s[i] == ' ' || s[i] == '\t' ; i++); // 숫자앞에 공백 예외처리 sig..
C
2018. 1. 3. 10:23