일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- #binary
- docker example
- #자바상속#자바이즈어#is~a
- 하이퍼레저패브릭
- git flow
- html youtube
- #C++ has~a
- #C++ 연산자함수오버로딩
- mac terminal command
- #2차원배열
- #성적관리프로그램
- border-box
- relative path
- html multimedia
- #CallByAddress
- html id
- hyperledger transaction
- #1차원배열
- html5 new tag
- #다차원포인터
- html object
- html plug-in
- #android activity
- #bubbleSort
- html charset
- html video
- #3차원배열
- html code
- 토큰경제
- #JAVASCRIPT
Archives
- Today
- Total
목록#포인터멤버변수동적메모리할당 (1)
A sentimental robot
구조체의 포인터멤버변수 동적메모리할당
#include #include #pragma warning (disable:4996)void memoryalloc(struct score**pp); void input(struct score*p); void oper(struct score*p); void output(struct score*p); void del(struct score*p); int num; int i; struct score { char *name; int *kor; int *eng; int *mat; int *total; float *avg;};void main() { struct score *p; memoryalloc(&p); input(p); oper(p); output(p); del(p); } void memoryalloc(s..
C
2018. 1. 2. 11:30