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