Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 따배씨
- 인프런
- web
- C
- 백준
- dfs
- greedy
- BFS
- server
- Algospot
- BOJ
- 종만북
- JavaScript
- BASIC
- programmers
- sorting
- Algorithm
- graph
- 따라하면서 배우는 C언어
- Python
- String
- DP
- 생활코딩
- udemy
- Math
- 따라하며 배우는 C언어
- C언어
- 정수론
- Cleancode
- php
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 10.11 배열 매개변수와 const 본문
따배씨 - 따라하며 배우는 C언어
10강 배열과 포인터
10.11 배열 매개변수와 const
#include <stdio.h>
void print_array(const int arr[], const int n);
void add_value(int arr[], const int n, const int val);
int main(){
int arr[] = {1, 2, 3, 4, 5};
const int n = sizeof(arr) / sizeof(arr[0]);
print_array(arr, n);
add_value(arr, n, 100);
print_array(arr, n);
return 0;
}
void print_array(const int arr[], const int n){
for (int i = 0; i < n; ++i){
printf("%d ", arr[i]);
}
printf("\n");
}
void add_value(int arr[], const int n, const int val){
int i;
for (i = 0; i < n; i++){
arr[i] += val;
}
}
void print_array(const int arr[], const int n);
void add_value(int arr[], const int n, const int val);
- 함수의 매개변수에 cosnt 를 사용하여, 명시적으로 작성하는것이 좋음
- compiler 의 도움으로 error를 방지 할 수 있음
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
http://blog.naver.com/atelierjpro
http://www.inflearn.com/course/following-c
'Language > C' 카테고리의 다른 글
[따배씨] 10.14 2차원 배열과 포인터 (0) | 2021.06.06 |
---|---|
[따배씨] 10.12 포인터에 대한 포인터 (2중 포인터) 의 작동 원리 ~ 10.13 포인터의 배열과 2차원 배열 (0) | 2021.06.06 |
[따배씨] 10.10 const 와 배열과 포인터 (0) | 2021.06.06 |
[따배씨] 10.8 두 개의 포인터로 배열을 함수에게 전달해주는 방법 ~ 10.9 포인터 연산 총정리 (0) | 2021.06.05 |
[따배씨] 10.7 배열을 함수에게 전달해주는 방법 (0) | 2021.06.05 |
Comments