일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- hyperledger transaction
- #CallByAddress
- #JAVASCRIPT
- docker example
- border-box
- #3차원배열
- 토큰경제
- #binary
- #다차원포인터
- html charset
- relative path
- #자바상속#자바이즈어#is~a
- #android activity
- html video
- git flow
- html plug-in
- html youtube
- 하이퍼레저패브릭
- #C++ has~a
- html5 new tag
- mac terminal command
- html code
- html multimedia
- #성적관리프로그램
- html id
- html object
- #bubbleSort
- #1차원배열
- #2차원배열
- #C++ 연산자함수오버로딩
Archives
- Today
- Total
목록#더블포인터 (1)
A sentimental robot
동적메모리할당함수 호출하기(방법2 : 더블 포인터를 이용한 call by address)
#include #include #pragma warning (disable:4996) void memoryalloc(int **pp); void input(int*p); void output(int*p); void del(int*p); void main() { int *p; memoryalloc(&p); // 포인터의 주소를 넘겨주기 input(p); output(p); del(p); } void memoryalloc(int**pp) { *pp=(int*)calloc(1,sizeof(int)); } void input(int*p) { printf("숫자를 입력하시오.(입력함수)\n"); scanf("%d",p); } void output(int*p) { printf("입력한 숫자가 나옵니다.(출력함수)..
C
2017. 12. 29. 20:54