일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- html plug-in
- html object
- #JAVASCRIPT
- 토큰경제
- #자바상속#자바이즈어#is~a
- hyperledger transaction
- html video
- #CallByAddress
- mac terminal command
- #성적관리프로그램
- border-box
- #binary
- #3차원배열
- #C++ has~a
- html youtube
- #android activity
- html id
- docker example
- html code
- git flow
- #C++ 연산자함수오버로딩
- #2차원배열
- html5 new tag
- relative path
- html multimedia
- 하이퍼레저패브릭
- html charset
- #다차원포인터
- #bubbleSort
- #1차원배열
Archives
- Today
- Total
A sentimental robot
const int *const p 본문
#include<stdio.h>
#pragma warning (disable:4996)
void main()
{
int a=10;
int b=20;
const int *const p=&a; //상수에 대한 상수 포인터 > 값도 주소값도 못바꾸기 때문에 잘 안쓰인다. > 선언과 동시에 초기화를 해야함
printf("%d %d %d\n",a, b,*p); // 10 20 10
// *p=500; >> error : 고정된 값을 가르키기 때문에
// p=&b; >> error : 고정된 주소를 가르키기 때문에 주소를 바꿀 수 없다!!
}
'C ' 카테고리의 다른 글
파일 입출력 (텍스트 파일) (0) | 2018.01.02 |
---|---|
파일 입출력 (0) | 2018.01.02 |
int * const p (0) | 2018.01.02 |
const int *p (0) | 2018.01.02 |
const (0) | 2018.01.02 |