brintos

brintos / llvm-project-archived public Read only

0
0
Text · 202 B · 2ffb897 Raw
13 lines · c
1#include <stdio.h>2 3int do_something(int input) {4  return input % 5; // Deletable location5}6 7int main() {8  printf("Set a breakpoint here.\n");9  do_something(100);10  do_something(200);11  return 0;12}13