/*** example4.c: local variables ***/ void foo() { int p = 7; { char p = p; static int n = 1; } }