blob: 2ffb897b2f92d5e051775e6520abd50007d89780 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <stdio.h>
int do_something(int input) {
return input % 5; // Deletable location
}
int main() {
printf("Set a breakpoint here.\n");
do_something(100);
do_something(200);
return 0;
}
|