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

/*
 *
 * 4.2
 *
 *
 */

int main () {

	//* vec.begin() // Function is called, then dereferenced
	//* vec.begin() + 1 // Function called, dereference, add
	
	return 0;
}