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