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

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

int main () {

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

	return 0;
}