vote up 5 vote down star
3

What is the difference between the following declarations:

int* arr1[8];
int (*arr2)[8];
int *(arr3[8]);

What is the general rule for understanding more complex declarations?

flag

3 Answers

vote up 6 vote down check
int* arr[8]; // An array of int pointers.
int (*arr)[8]; // A pointer to an array of integers

The third one is same as the first.

The general rule is operator precedence. It can get even much more complex as function pointers come into the picture.

link|flag
So, for 32 bit systems: int* arr[8]; /* 8x4 bytes allocated, for each pointer */ int (arr)[8]; / 4 bytes allocated, only a pointer */ – Richard J. Terrell May 13 at 18:43
Nope. int* arr[8]: 8x4 bytes allocated total, 4 bytes for each pointer. int (*arr)[8] is right, 4 bytes. – Mehrdad Afshari May 13 at 18:49
I should have re-read what I wrote. I meant 4 for each pointer. Thanks for the help! – Richard J. Terrell May 13 at 18:59
Yeah, that's correct. – Mehrdad Afshari May 13 at 19:03
The reason that the first one is the same as the last is that it's always allowed to wrap parentheses around declarators. P[N] is an array declarator. P(....) is a function declarator and *P is a pointer declarator. So everything in the following is the same as without any parentheses (except for the one of the functions' "()": int (((*p))); void ((g(void))); int *(a[1]); void (*(p())). – Johannes Schaub - litb May 13 at 20:21
show 1 more comment
vote up 11 vote down

Use the cdecl program, as suggested by K&R.

$ cdecl
Type `help' or `?' for help
cdecl> explain int* arr1[8];
declare arr1 as array 8 of pointer to int
cdecl> explain int (*arr2)[8]
declare arr2 as pointer to array 8 of int
cdecl> explain int *(arr3[8])
declare arr3 as array 8 of pointer to int
cdecl>

It works the other way too.

cdecl> declare x as pointer to function(void) returning pointer to float
float *(*x)(void )
link|flag
wow, great tool, thanks! – Richard J. Terrell May 13 at 18:45
vote up 8 vote down

I don't know if it has an official name, but I call it the Right-Left Thingy(TM).

Start at the variable, then go right, and left, and right...and so on.

int* arr1[8];

arr1 is an array of 8 pointers to integers.

int (*arr2)[8];

arr2 is a pointer (the parenthesis block the right-left) to an array of 8 integers.

int *(arr3[8]);

arr3 is an array of 8 pointers to integers.

This should help you out with complex declarations.

link|flag

Your Answer

Get an OpenID
or

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