up vote 15 down vote favorite
5
share [g+] share [fb]

I long thought that in C, all variables had to be declared at the beginning of the function. I know that in C99, the rules are the same as in C++, but what are the variable declaration placement rules for C89/ANSI C?

The following code compiles successfully with "gcc -std=c89" and "gcc -ansi":

#include <stdio.h>
int main() {
    int i;
    for (i = 0; i < 10; i++) {
        char c = (i % 95) + 32;
        printf("%i: %c\n", i, c);
        char *s;
        s = "some string";
        puts(s);
    }
    return 0;
}

Shouldn't the declarations of c and s cause an error in C89/ANSI mode?

link|improve this question

77% accept rate
7  
Just a note: variables in ansi C don't have to be declared at the start of a function but rather at the start of a block. So, char c = ... at the top of your for loop is completely legal in ansi C. The char *s, however, would not be. – Jason Coco Nov 13 '08 at 21:56
feedback

5 Answers

up vote 35 down vote accepted

It compiles successfully because GCC allows it as a GNU extension, even though it's not part of the C89 or ANSI standard. If you want to adhere strictly to those standards, you must pass the -pedantic flag.

link|improve this answer
Wow. Thanks! I didn't know that. – mcjabberz Nov 13 '08 at 21:49
7  
It is probably worth noting that only the declaration of s is an extension (from C89 point of view). The declaration of c is perfectly legal in C89, no extensions needed. – AndreyT Apr 16 '10 at 23:16
feedback

For C89, you must declare all of your variables at the beginning of a scope block.

So, your char c declaration is valid as it is at the top of the for loop scope block. But, the char* s declaration should be an error.

link|improve this answer
Quite correct. You can declare variables at the beginning of any { ... }. – Artelius Nov 13 '08 at 21:55
feedback

From a maintainability, rather than syntactic, standpoint, there are at least three trains of thought:

  1. Declare all variables at the beginning of the function so they'll be in one place and you'll be able to see the comprehensive list at a glance.

  2. Declare all variables as close as possible to the place they're first used, so you'll know why each is needed.

  3. Declare all variables at the beginning of the innermost scope block, so they'll go out of scope as soon as possible and allow the compiler to optimize memory and tell you if you accidentally use them where you hadn't intended.

I generally prefer the first option, as I find the others often force me to hunt through code for the declarations. Defining all variables up front also makes it easier to initialize and watch them from a debugger.

I'll sometimes declare variables within a smaller scope block, but only for a Good Reason, of which I have very few. One example might be after a fork(), to declare variables needed only by the child process. To me, this visual indicator is a helpful reminder of their purpose.

link|improve this answer
4  
I use option 2 or 3 so it is easier to find the variables -- because the functions shouldn't be so big that you can't see the variable declarations. – Jonathan Leffler Nov 15 '08 at 15:07
2  
Option 3 is a non-issue, unless you use a compiler from the 70s. – edgar.holleis Nov 5 '10 at 11:45
1  
If you used a decent IDE, you wouldn't need to go code hunting, because there should be an IDE-command to find the declaration for you. (F3 in Eclipse) – edgar.holleis Nov 5 '10 at 11:47
I don't understand how you can ensure initialization in option 1, may times you can only get the initial value later in the block, by calling another function, or performing a caclulation, may be. – Plumenator May 20 '11 at 12:03
1  
@Plumenator: option 1 doesn't ensure initialization; I chose to initialize them upon declaration, either to their "correct" values or to something that will guarantee the subsequent code will break if they're not set appropriately. I say "chose" because my preference has changed to #2 since I wrote this, perhaps because I'm using Java more than C now, and because I have better dev tools. – Adam Liss May 28 '11 at 22:27
feedback

Grouping variable declarations at the top of the block is a legacy likely due to limitations of old, primitive C compilers. All modern languages recommend and sometimes even enforce the declaration of local variables at the latest point: where they're first initialized. Because this gets rid of the risk of using a random value by mistake. Separating declaration and initialization also prevents you from using "const" (or "final") when you could.

C++ unfortunately keeps accepting the old, top declaration way for backward compatibility with C (one C compatibility drag out of many others...) But C++ tries to move away from it:

  • The design of C++ references does not even allow such top of the block grouping.
  • If you separate declaration and initialization of a C++ local object then you pay the cost of an extra constructor for nothing. If the no-arg constructor does not exist then again you are not even allowed to separate both!

C99 starts to move C in this same direction.

If you are worried of not finding where local variables are declared then it means you have a much bigger problem: the enclosing block is too long and should be split.

https://www.securecoding.cert.org/confluence/display/cplusplus/DCL19-CPP.+Initialize+automatic+local+variables+on+declaration

link|improve this answer
learncpp.com/cpp-tutorial/… – MarcH Nov 5 '10 at 11:12
See also how forcing variable declarations at the top of the block can create security holes: lwn.net/Articles/443037 – MarcH May 17 '11 at 8:36
feedback

As noted by others, GCC is permissive in this regard (and possibly other compilers, depending on the arguments they're called with) even when in 'C89' mode, unless you use 'pedantic' checking. To be honest, there are not many good reasons to not have pedantic on; quality modern code should always compile without warnings (or very few where you know you are doing something specific that is suspicious to the compiler as a possible mistake), so if you cannot make your code compile with a pedantic setup it probably needs some attention.

C89 requires that variables be declared before any other statements within each scope, later standards permit declaration closer to use (which can be both more intuitive and more efficient), especially the simultaneous declaration and initialization of a loop control variable in 'for' loops.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.