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