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