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