제목 : 7.3. 예제. 정수형 포인터 변수 사용 예제 : 포인터_정수형2.c
글번호:
|
|
63
|
작성자:
|
|
레드플러스
|
작성일:
|
|
2005/08/02 오후 8:53:57
|
조회수:
|
|
5047
|
#include <stdio.h>
main()
{
int a, *pt;
//clrscr();
a = 365;
pt = &a;
printf("변수 a값 : %d\n", a);
printf("변수 a의 주소 : %u\n", &a);
printf("포인터 변수 값 : %u\n", pt);
printf("포인터 주소 : %u\n", &pt);
*pt = *pt + 2;
printf("변수 a값 : %d\n", a);//367
printf("포인터 변수 값 : %u\n", pt);
}