Your local variables should have absolutely no more visibility than required - so declare them when you need them, and let them go out of scope when you're done with them.
The classic case of this is C++ loop variables:
//BAD - old, C-style:
int i;
for (i=0; i < 100; ++i)
{
...
}
.. vs..
//GOOD
for (int i=0; i < 100; ++i)
{
...
}
One benefit of the reduced scope which isn't immediately obvious is that the following code now fails to compile:
for (int i=0; i < 100; i++);
{
printf("loop %d\n", i);
}
