foo(a,b,c)1 foo (a, b, c)
2 {
3   bar (a, b);
4   {
5     int arr[10];
6     arr[c] = b;
7     bar (arr[0], arr[1]);
8   }
9 }
10