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

/*
 *
 * 6.6
 *
 *
 */

int main () {

	// When the function ends the local variable is destroyed
	// When the function ends the static variable retains its value and is still there when the function is called again.
	return 0;
}