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