일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- html code
- mac terminal command
- #android activity
- #2차원배열
- #bubbleSort
- 토큰경제
- #JAVASCRIPT
- docker example
- hyperledger transaction
- html object
- html plug-in
- #3차원배열
- html multimedia
- #binary
- html youtube
- relative path
- 하이퍼레저패브릭
- #C++ 연산자함수오버로딩
- #C++ has~a
- html id
- git flow
- html video
- border-box
- #CallByAddress
- html5 new tag
- html charset
- #다차원포인터
- #자바상속#자바이즈어#is~a
- #1차원배열
- #성적관리프로그램
Archives
- Today
- Total
목록#다차원포인터 (2)
A sentimental robot
다차원포인터 활용
#include #pragma warning(disable:4996); #include void input(char (*name)[10],int (*score)[4]) // == char name[][10], int score[][4] { int i,j; for(j=0 ; j
C
2018. 1. 2. 14:21
배열포인터 활용
#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