일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 multimedia
- #자바상속#자바이즈어#is~a
- html id
- hyperledger transaction
- #성적관리프로그램
- html object
- #JAVASCRIPT
- #1차원배열
- #C++ has~a
- mac terminal command
- html youtube
- html charset
- html5 new tag
- #bubbleSort
- html video
- #다차원포인터
- git flow
- 토큰경제
- #android activity
- docker example
- border-box
- html plug-in
- #binary
- html code
- relative path
- #C++ 연산자함수오버로딩
- 하이퍼레저패브릭
- #2차원배열
- #3차원배열
- #CallByAddress
Archives
- Today
- Total
목록#C함수#1차원배열 (1)
A sentimental robot
함수매개변수로 [ ] 사용 해보기
#include #pragma warning(disable:4996) void input(char scoName[], char name[], int score[]); void oper(int score[], float avg[]); void output(char scoName[], char name[], int score[], float avg[]); void main() { char scoName[6][10] = { "Name", "Kor","Eng","Math","Total","Avg" }; char name[10] = { 0, }; int score[4] = { 0 }; float avg; input(*scoName, name, score); // 1차원 주소로 맞춰주기 oper(score, &av..
C
2017. 12. 29. 20:09