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?
|
3
|
|
|
|
|
|
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. |
||||||||||
|
|
|
Use the cdecl program, as suggested by K&R.
It works the other way too.
|
||
|
|
|
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.
arr1 is an array of 8 pointers to integers.
arr2 is a pointer (the parenthesis block the right-left) to an array of 8 integers.
arr3 is an array of 8 pointers to integers. This should help you out with complex declarations. |
||
|
|