일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- relative path
- 토큰경제
- hyperledger transaction
- #binary
- html video
- #다차원포인터
- border-box
- docker example
- #자바상속#자바이즈어#is~a
- html multimedia
- mac terminal command
- html object
- #1차원배열
- #JAVASCRIPT
- #bubbleSort
- #성적관리프로그램
- html5 new tag
- #3차원배열
- #CallByAddress
- #2차원배열
- html youtube
- html plug-in
- #C++ has~a
- html id
- #android activity
- 하이퍼레저패브릭
- html code
- #C++ 연산자함수오버로딩
- html charset
- git flow
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