1 int 2 main(int argc, char const *argv[]) 3 { 4 int a = 0; 5 int b = 1; 6 a = b + 1; // Set breakpoint here 7 b = a + 1; 8 return 0; 9 } 10 11