1int bar(int b) { return b * b; }2 3int foo(int f) {4 int b = bar(f); // break here5 return b;6}7 8int main() {9 int f = foo(42);10 return f;11}12