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