debug.c 118 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 int foo(int a, int b, int c) { int x = a + b; int y = x + c; return y; } int bar(int a) { a++; return a; }