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

/*
 *
 * 2.32
 *
 *
 */

int main () {

	int null = 0, *p = null;
	std::cout << null << " " << *p << std::endl;
	return 0;
}