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

/*
 *
 * 2.20
 *
 *
 */

int main () {

	int i = 42;
	int *p = &i;
	*p = *p * *p; // Same as i = i * i;
	std::cout << "i: " << i
			  << "\n*p: " << *p << std::endl;
	
	return 0;
}