포인터

C & C++ 관련 : 2007. 3. 14. 16:31
반응형
연습하다가 그려봤음.

#include <stdio.h>

void main()
{
    int i=20;
  int *ptr=&i;
  int **ptr_ptr=&ptr;

    printf("%d\n",i);
  printf("%d\n",ptr);
  printf("%d\n",*ptr);
  printf("%d\n\n",&ptr);

  printf("%d\n",ptr_ptr);
  printf("%d\n",*ptr_ptr);
  printf("%d\n",**ptr_ptr);
}

사용자 삽입 이미지

사용자 삽입 이미지

반응형

'C & C++ 관련' 카테고리의 다른 글

유닉스 시스템 프로그래밍 정리 자료  (0) 2007.03.20
확장열(Escape Sequence)  (0) 2007.03.14
정수화 함수는  (0) 2007.03.14
Posted by Real_G