What do you think which way is better declaring the argv argument in the main function and why?

int main(int argc, char **argv /* char *argv[] */ /* char (*argv)[] */) {
    //...
}

argv comes into the function ultimately as a pointer - just as a copy of the argv address, but not as an array, right? So I think, the other alternatives must also be syntactically correct, but which way would you prefer?

Regards

link|improve this question
1  
Which way do you prefer? I think most programmers will understand even the last declaration. – semisight Nov 11 '11 at 8:50
feedback

closed as not constructive by Mat, Jens Gustedt, Matt Fenwick, BalusC, martin clayton Nov 12 '11 at 1:30

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

4 Answers

char *argv[] is most explicit as to what it means -- an array of strings.

char **argv is fastest to type if you're lazy.

char (*argv)[] I'm not sure why you'd use.

link|improve this answer
feedback

I personally prefer

char *argv[]

because it describes argv better, IMO. It's an array of char*, that is an array of strings, which is what I expect argv to be. Not a double pointer. The third variant seems ok and is equivalent to the second one.

link|improve this answer
feedback

Using *argv[] is the traditional way, but I have seen programs using **argv as well.

The variant (*argv)[] is actually the opposite of *argv[], the first is a pointer to an array (which is wrong in this case), the last is an array of pointers.

link|improve this answer
feedback

I like char *argv[] as it is the clearest expression of what is actually passed; an array of pointers to character strings.

char **argv is more consise but I feel "pointer to pointer" does not accuratly describe wahts being passed.

The extra parenthesis in the third option just confuse things.

link|improve this answer
feedback

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