Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Difference between passing array and array pointer into function in C

I have been wondering this for a while, is there any difference between these two?

void f1(char *c);
void f2(char c[]);

A common example is this:

int main(int argc, char **argv);
int main(int argc, char *argv[]);

Are there any reasons to prefer one to the other, apart from artistic ones?

share|improve this question
1  

marked as duplicate by Mat, Tim Cooper, aioobe, leonbloy, Perception Apr 21 '12 at 0:52

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

up vote 6 down vote accepted

There is no difference.

From the horse mouth:

(C99, 6.7.5.3p7) "A declaration of a parameter as "array of type" shall be adjusted to "qualified pointer to type", where the type qualifiers (if any) are those specified within the [ and ] of the array type derivation."

On the reasons to prefer one form over the other, it depends on the people. Here is what H&S says (on switching to T *array from T arr[]):

(H&S, 5.4.3 Array Bounds) "That would more accurately reflect the implementation but less clearly indicate the intent."

share|improve this answer
Who are H&S? Google isn't very helpful with such a short query. – nightcracker Apr 20 '12 at 14:24
Harbison & Steele careferencemanual.com – ouah Apr 20 '12 at 14:25
Harbison & Steele. – John Bode Apr 20 '12 at 14:26
Thanks. Would you recommend it to me? (I'm intermediate at C right now). – nightcracker Apr 20 '12 at 14:26
Totally, it is one the best book around for C. Note that it's a reference book. – ouah Apr 20 '12 at 14:27

No. In a function declaration/definition, the use of an array as an argument is syntactic sugar only. It's still passed as a pointer, and sizeof(theArgument) will still give you sizeof(TheType *) rather than sizeof(TheType) * sizeof(numElements).

share|improve this answer

Well first one indicates that this is a pointer and the second that this is an array. While there is no effective difference, when you read the code you generally expect a single element in the first case an a sequence of more then one element in the second case. This might be helpful sometimes.

share|improve this answer

There is no difference. Every n-dimensional array in both C and C++ can be interpreted as both n-dimensional array and pointer to (n-1)-dimensional array (as the pointer's [] semantic is same as array's one).

share|improve this answer

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