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