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