일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- relative path
- #2차원배열
- docker example
- border-box
- mac terminal command
- html plug-in
- #3차원배열
- html id
- #CallByAddress
- #다차원포인터
- #C++ 연산자함수오버로딩
- 토큰경제
- git flow
- #bubbleSort
- 하이퍼레저패브릭
- html youtube
- #1차원배열
- #C++ has~a
- #자바상속#자바이즈어#is~a
- html video
- #binary
- html code
- #android activity
- html5 new tag
- #성적관리프로그램
- html object
- html multimedia
- html charset
- #JAVASCRIPT
- hyperledger transaction
Archives
- Today
- Total
A sentimental robot
const 본문
const
- 변수 선언 시 앞에 const를 붙이면 초기값을 바꿀 수 없다. > 상수화
- 선언과 동시에 초기화를 해야한다.
- const. int MAX=100;
- const를 포인터에 붙히기
->const의 위치에 따라서 포인터가 가르키는 위치를 못바꾸게 함.
1) const int *p;
-->가르키는 값이 const int > 값을 못바꿈
2) int *const p;
-->가르키는 값이 *const > 주소값을 못바꿈
3) const int*const p;
-->둘 다 못바꿈 > 주소값과 값을 못바꿈
'C ' 카테고리의 다른 글
int * const p (0) | 2018.01.02 |
---|---|
const int *p (0) | 2018.01.02 |
구조체의 포인터멤버변수 동적메모리할당 (0) | 2018.01.02 |
동적메모리할당함수 호출하기(방법2 : 더블 포인터를 이용한 call by address) (0) | 2017.12.29 |
동적메모리할당함수 호출하기(방법1) (0) | 2017.12.29 |