summaryrefslogtreecommitdiff
path: root/2p32.cpp
blob: 2f94ae389563d166b682a77954222be390abc8c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <iostream>

/*
 *
 * exersice 2.32 c++ primer
 *
 *
 */

int main () {

	int null1 = 0, *p1 = &null1; // Add a & ?
	std::cout << null1 << " " << *p1 << std::endl;

	return 0;
}