1 int foo(int a, int b, int c) { 2 int x = a + b; 3 int y = x + c; 4 return y; 5 } 6 7 int bar(int a) { 8 a++; 9 return a; 10 } 11