1 int a = 1; foo()2 int foo() { 3 return a; 4 } 5 main()6 int main() { 7 int *b = &a; 8 return *b + foo(); 9 } 10