C언어 포인터와 상수

John Jeong (토론 | 기여)님의 2016년 12월 5일 (월) 23:09 판 (새 문서: ==개념== ;포인터와 상수 관계 *대상체 상수, 포인터 변수 <source lang="c"> const int *p = &i; </source> *대상체 상수, 포인터 변수 <source lang="c"> int...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

개념

포인터와 상수 관계
  • 대상체 상수, 포인터 변수
const int *p =  &i;
  • 대상체 상수, 포인터 변수
int const *p = &i;
  • 대상체 변수, 포인터 상수
int * const p = &i;
  • 대상체 상수, 포인터 상수
const int * const p = &i;
  • 대상체 상수, 포인터 변수
const int const *p = &i;
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}