본문 바로가기

프로그래밍/C++

[C++] 포인터 값 확인 하기

반응형

코드

#include <iostream>

# define SIZE 5 // mainifest constant
using namespace std;

int main()
{
int a = 123;

int* p = NULL;


p = &a;


if (p != NULL)
{
cout << "p=" << p << " " << "&a=" << &a << endl; 
cout << "*p=" << *p << " " << "a=" << a << endl;
}

return 0;
}

결과