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

/*
 *
 * 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;
}