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