Possible Duplicate:
Should I use char** argv or char* argv[] in C?

What is the difference between using char **argv and char *argv[] for the second parameter to a c program. Does it affect the way the strings are passed? Thanks :-)

link|improve this question

I don't qualify this as an 'answer', so I'll put it here, but I do feel that this is important. You will find that people have problems reading this one way or the other, between being stubborn and being ignorant. If you work for someone and you're told to do it a particular way, don't ever forget it or you may have a fine time trying to fix all of those. :P. – Zéychin Jul 7 '11 at 20:30
Arrays decay to pointers, so there is no difference between the two. – StackUnderflow Jul 7 '11 at 20:53
feedback

closed as exact duplicate by therefromhere, mu is too short, StackUnderflow, McDowell, Bo Persson Jul 9 '11 at 10:14

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

up vote 7 down vote accepted

There is absolutely no difference. At all.

in C

void f(int*);

and

void f(int[]);

and

void f(int[42]);

are three completely identical declarations.

link|improve this answer
Interesting stuff. – Luke Jul 7 '11 at 20:18
feedback

**argv and *argv[] as a function argument are technically identical - as C will convert any array into a pointer in a function argument.

Note that this can catch you out, for example this is totally valid and won't raise any warnings (or errors), even though a beginner might think that the array passed is invalid:

void func(int array[2])
{
    array[1] = 1; // buffer overrun: will write past the end of a[].
}

int main()
{
    int a[1];
    func(a);
    return 0;
}
link|improve this answer
1  
the array passed is valid, but maybe it would be better to stress the fact that array[2] will write out the array bounds (even with int a[2])... – ShinTakezou Jul 7 '11 at 20:40
@Shin : Good point - modified as suggested. – Dave Rigby Jul 7 '11 at 20:45
feedback

In the context of a function parameter declaration, T a[] and T *a are synonymous. In both cases, a is a pointer to T.

When an array expression appears in a context other than as an operand to the sizeof or unary & operators (such as a parameter in a function call), the type of the expression is implicitly converted from "N-element array of T" to "pointer to T", and the value of the expression is the address of the first element in the array. Thus, a function can never receive an array value; it can only receive a pointer to the first element.

dmr decided to use the T a[] syntax to make the intent clear (a refers to the first element of an array of T as opposed to a pointer to a single instance of T), but I think it's caused more heartburn that it was worth.

link|improve this answer
feedback

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