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 :-)
What is the difference between using
| |||||
feedback
|
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.
|
There is absolutely no difference. At all. in C
and
and
are three completely identical declarations. | |||
|
feedback
|
|
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:
| |||||||
feedback
|
|
In the context of a function parameter declaration, When an array expression appears in a context other than as an operand to the dmr decided to use the | |||
|
feedback
|