int x, y, z; void foo(int n) { int a; … // The n referes to the function parameter n a += n; // The a refers to the a declared locally // within the function body }