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