summaryrefslogtreecommitdiff
path: root/4p17.cpp
blob: 63459d85131ce413f22b6c93490572f0d9b62b13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

/*
 *
 * 4.17
 *
 *
 */

int main () {

	// Prefix increments will increment the object by 1 and return the incremented object as result.
	// Postfix increment will increment the object by 1 but return a copy of the object before being incremented.
	return 0;
}