1char c; 2int x; 3 4void bar(int x); 5 6int 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