Possible Duplicate:
How do you read C declarations?
I Don't understand the following:
int * (*(*p)[2][2])(int,int);
Can you help?
I Don't understand the following:
Can you help? |
||||
|
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.
|
For things like this try cdecl, decoded to;
|
|||
|
|
What would such a beast look like in practice?
|
|||
|
|
|
Pretty sure its defining p as a pointer to a 2 by 2 array of pointers to (functions taking (int a, int b) as parameters and returning a pointer to int) |
|||
|
|
|
The expression defines a pointer to an 2x2 array of function pointers. See http://www.newty.de/fpt/fpt.html#arrays for an introduction to C/C++ function pointers (and arrays of them specifically). In particular, given a function declaration
You define a function pointer ptr_to_foo (and assign the address of foo to it) like this:
Now, if you need not only a single function pointer, but an array of them (let's make this a 2D array of size 2 x 2):
Apparently, that's not enough. Instead of the array of function pointers, we need a pointer to such an array. And that would be:
|
|||
|
|