(C++) 참고용 정리 - 변수의 주소

1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>
using namespace std;

int main() {
int num2 = 11;
int num = 11;
int num3 = num;
// 같은 값이던 변수를 참조하던 다른 메모리 공간을 차지함.
cout << &num2 << endl; // 0x7FFF5322DAD8
cout << &num << endl; // 0x7FFF5322DAD4
cout << &num3 << endl; // 0x7FFF5322DAD0
return 0;
}