aboutsummaryrefslogtreecommitdiffstats
path: root/RawMemory.cpp
blob: f6247f63415080b196988e80ea211798f0abc969 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <iostream>
#include <string>

using namespace std;

int main() {
	int a = 15;
	int* point = &a;

	cout << "a: " << a << ", &a: " << &a << ", point: "
			<< point << ", &point: " << &point << ", *point: " << 
			*point << endl;

}