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

/*
 *
 * 7.56
 *
 *
 */

int main () {

	// A static member is shared across all objects of the same Class type.
	// This means that if we change the static member, all classes will be
	// see this change on the static member.
	return 0;
}