반응형
코드
#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;
}
결과
'프로그래밍 > C++' 카테고리의 다른 글
[C++] Reference 및 포인터(Pointer)로 데이터 값 교환(Swap)하기 (0) | 2023.02.02 |
---|---|
[C++] 함수를 이용한 Factorial 예제 (0) | 2023.02.02 |
[C++] 열거체(Enumeration)의 간단한 예제 (0) | 2023.02.02 |
[C++] 구조체(Struct)를 이용한 데이터 입력 및 출력 (0) | 2023.02.02 |
[C++] 구조체(Struct)를 이용한 데이터 출력 (0) | 2023.02.02 |