1 | #include <stdio.h> |
---|---|
2 | |
3 | int |
4 | call_me(int input) |
5 | { |
6 | return input; |
7 | } |
8 | |
9 | int |
10 | main() |
11 | { |
12 | int value = call_me(input: 0); // Set a breakpoint here |
13 | while (value < 10) |
14 | { |
15 | printf(format: "Add conditions to this breakpoint: %d.\n", value++); |
16 | } |
17 | return 0; |
18 | } |
19 |