brintos

brintos / llvm-project-archived public Read only

0
0
Text · 162 B · 74b8a59 Raw
12 lines · c
1#include <stdio.h>2 3int global_test_var = 10;4 5int6main()7{8  int test_var = 10;9  printf ("Set a breakpoint here: %d.\n", test_var);10  return global_test_var;11}12