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
- 따배씨
- Python
- 따라하며 배우는 C언어
- sorting
- dfs
- udemy
- php
- greedy
- web
- DP
- C언어
- 정수론
- BOJ
- 따라하면서 배우는 C언어
- BASIC
- 생활코딩
- Algorithm
- Math
- 인프런
- Cleancode
- C
- String
- 종만북
- JavaScript
- graph
- 백준
- BFS
- server
- programmers
- Algospot
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 10.10 const 와 배열과 포인터 본문
따배씨 - 따라하며 배우는 C언어
10강 배열과 포인터
10.10 const 와 배열과 포인터
#include <stdio.h>
int main(){
// type qualifiers : constm volatile, ...
const double arr2[3] = {1.0, 2.0, 3.0};
const double* pd = arr2;
*pd = 3.0;
// pd[0] = 3.0; arr2[0] = 3.0;
pd[2] = 1024.0;
// arr2[2] = 1024.0;
printf("%f %f\n", pd[2], arr2[2]);
return 0;
}
const double arr2[3] = {1.0, 2.0, 3.0};
couble* pd = arr2;
- const로 서언한 배열을 pointer로 접근하여 수정 가능하기 때문에 권장하지 않음
- Warning
#include <stdio.h>
int main(){
// type qualifiers : constm volatile, ...
const double arr2[3] = {1.0, 2.0, 3.0};
const double* pd = arr2;
pd++;
printf("%f %f\n", pd[2], arr2[2]);
// 쓰레기값 3.000000
return 0;
}
const double arr2[3] = {1.0, 2.0, 3.0};
const double* pd = arr2;
- const 로 선언한 배열의 pointer 도 const로 선언 해 주는게 좋음
pd++;
printf("%f %f\n", pd[2], arr2[2]);
- pd 를 const 로 선언 하였지만, 저장된 주소 값은 변경 가능
const double * const pd = arr2
- const 를 한번더 사용하면 주소값도 변경 불가능
pd++
- pd 에 저장된 주소값이 arr[1] 로 증가
- pd[2] == arr[3], arr[3]은 배열의 범위가 넘어가므로 쓰레기값 출력
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
http://blog.naver.com/atelierjpro
http://www.inflearn.com/course/following-c
'Language > C' 카테고리의 다른 글
[따배씨] 10.12 포인터에 대한 포인터 (2중 포인터) 의 작동 원리 ~ 10.13 포인터의 배열과 2차원 배열 (0) | 2021.06.06 |
---|---|
[따배씨] 10.11 배열 매개변수와 const (0) | 2021.06.06 |
[따배씨] 10.8 두 개의 포인터로 배열을 함수에게 전달해주는 방법 ~ 10.9 포인터 연산 총정리 (0) | 2021.06.05 |
[따배씨] 10.7 배열을 함수에게 전달해주는 방법 (0) | 2021.06.05 |
[따배씨] 10.6 2차원 배열 연습문제 (0) | 2021.06.05 |
Comments