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