brintos

brintos / llvm-project-archived public Read only

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