일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- hyperledger transaction
- html video
- git flow
- mac terminal command
- #다차원포인터
- html5 new tag
- html object
- #CallByAddress
- #C++ 연산자함수오버로딩
- html youtube
- #3차원배열
- #JAVASCRIPT
- #binary
- relative path
- #자바상속#자바이즈어#is~a
- border-box
- html code
- 하이퍼레저패브릭
- #1차원배열
- #bubbleSort
- #C++ has~a
- #성적관리프로그램
- docker example
- #android activity
- html multimedia
- html charset
- html plug-in
- html id
- 토큰경제
- #2차원배열
- Today
- Total
A sentimental robot
함수매개변수로 [ ] 사용 해보기 본문
#include<stdio.h>
#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(*scoName, name, score, &avg);
}
void input(char scoName[], char name[], int score[])
{
int i;
printf("%s input: ", scoName);
scanf("%s", name);
for (i = 0; i < 3; i++)
{
scoName += 10;
printf("%s input: ", scoName);
scanf("%d", &score[i]);
}
}
void oper(int score[], float avg[])
{
int i;
for (i = 0; i < 3; i++)
score[3] += score[i];
avg[0] = score[3] / 3.f;
}
void output(char scoName[], char name[], int score[], float avg[])
{
int i;
for (i = 0; i < 6; i++)
{
printf("%s\t", scoName+i*10);
}
puts("");
printf("%s\t", name);
for (i = 0; i < 4; i++)
{
printf("%d\t", score[i]);
}
printf("%f\n", avg[0]);
}
'C ' 카테고리의 다른 글
배열포인터 활용 (0) | 2017.12.29 |
---|---|
포인터배열과 더블포인터 (0) | 2017.12.29 |
함수와 포인터를 사용한 1차원배열 (0) | 2017.12.29 |
Call by address (0) | 2017.12.29 |
Pointer,2차원배열 (0) | 2017.12.29 |