| 1 | #include <stdio.h> |
|---|---|
| 2 | |
| 3 | void |
| 4 | call_me() |
| 5 | { |
| 6 | printf(format: "Set another breakpoint here.\n"); |
| 7 | } |
| 8 | |
| 9 | int |
| 10 | main() |
| 11 | { |
| 12 | int change_me = 0; |
| 13 | for (int i = 0; i < 2; i++) |
| 14 | { |
| 15 | printf (format: "Set a breakpoint here: %d with: %d.\n", i, change_me); |
| 16 | } |
| 17 | call_me(); |
| 18 | return 0; |
| 19 | } |
| 20 |
