brintos

brintos / llvm-project-archived public Read only

0
0
Text · 207 B · ebd8ae1 Raw
16 lines · c
1#include <stdio.h>2 3int4call_me(int input)5{6  return printf("I was called: %d.\n", input);7}8 9int10main()11{12  int test_var = 10;13  printf ("Set a breakpoint here: %d.\n", test_var);14  return call_me(100);15}16