1 2 3 4 5 6 7
int foo(int a, int b) { return a + b; // Set breakpoint here } int main() { return foo(1,3); }