1 extern int common1[8]; 2 3 extern void foo (); 4 5 int 6 bar () 7 { 8 foo (); 9 return common1[4]; 10 } 11