brintos

brintos / llvm-project-archived public Read only

0
0
Text · 89 B · d5ef46f Raw
10 lines · c
1int a = 1;2int foo() {3  return a;4}5 6int main() {7  int *b = &a;8  return *b + foo();9}10