1 char c; 2 int x; 3 4 void bar(int x); 5 6 int foo(int y, char d) { 7 int i; 8 for (i=0; i<3; i=i+1) { 9 x=3; 10 y=5; 11 } 12 } 13