I ask this question mostly in regards to C programming, but insights on any language are welcome.
When it comes to C, I know it only lets variable declarations occur at the very beginning of a block of code. And I have been under the impression that one should declare all variables to be used within a function at the very beginning of the function. But there are many occasions where I'll have a variable that is only used within a loop (or similar block).
an example would be a temporary variable for some return value:
while ( whatever ) {
int ret;
ret = getSomeValue();
}
or where some state may need to be held:
while ( whatever ) {
static int count=0;
count++;
}
I was wondering if it is considered improper, or, if there is any negative impact to declaring variables within control flow blocks such as if-else, for loops, while loops, etc.
Should variables always be declared with the tightest possible scope? what about for static declaration?
Edit: Okay, I probably should have said I'm aware C99 is more liberal when it comes to where you declare variables, but from a lot of C code I see, they're still usually declared at top. Also, I use VS2K8 which still complains about declarations.
Also, seeing as I've had 2 votes to close this thead, I'll make it clear that I'm more concerned with the performance and compiler aspects than I am with anything stylistic.