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