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