일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- border-box
- mac terminal command
- html plug-in
- html charset
- 하이퍼레저패브릭
- #2차원배열
- html youtube
- #CallByAddress
- docker example
- #binary
- #성적관리프로그램
- #android activity
- #JAVASCRIPT
- #다차원포인터
- html multimedia
- #C++ has~a
- relative path
- 토큰경제
- html object
- html id
- #3차원배열
- #bubbleSort
- html5 new tag
- #1차원배열
- #C++ 연산자함수오버로딩
- hyperledger transaction
- html video
- #자바상속#자바이즈어#is~a
- html code
- git flow
Archives
- Today
- Total
목록#구조체#structure#typedef (1)
A sentimental robot
구조체(typedef structure)
#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; printf("Name input:"); scanf("%s", aa.name); // 주소값 입력 printf("Kor input:"); scanf("%d", &aa.kor); printf("Eng input:"); scanf("%d", &aa.eng); printf("Mat input:"); scanf("%d", &aa.mat); aa.total = aa.kor + aa.eng + aa.m..
C
2017. 12. 29. 20:18