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:
How do you read C declarations?

I Don't understand the following:

int‬‬ ‪* (*(*p)[2][2])(int,int);

Can you help?

share|improve this question
+1 Cos although I thought it was not a terribly interesting question, have learnt about cdecl from Ismail. John Bode's answer shows how to do it in your head, and I have learnt that rather than rushing to get an answer I can actually do in as quickly as possible, that maybe quality wins out in the end. – aronp Jan 14 '11 at 19:21

marked as duplicate by casperOne Feb 8 '12 at 14:49

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 18 down vote accepted

For things like this try cdecl, decoded to;

declare p as pointer to array 2 of array 2 of pointer to function (int, int) returning pointer to int
share|improve this answer
          p                      -- p
         *p                      -- is a pointer
        (*p)[2]                  -- to a 2-element array
        (*p)[2][2]               -- of 2-element arrays
       *(*p)[2][2]               -- of pointers
      (*(*p)[2][2])(       );    -- to functions  
      (*(*p)[2][2])(int,int);    -- taking 2 int parameters
    * (*(*p)[2][2])(int,int);    -- and returning a pointer
int‬‬ ‪* (*(*p)[2][2])(int,int);    -- to int

What would such a beast look like in practice?

int *q(int x, int y) {...}  // functions returning int *
int *r(int x, int y) {...}
int *s(int x, int y) {...}
int *t(int x, int y) {...}
...
int *(*fptr[2][2])(int,int) = {{p,q},{r,s}};  // 2x2 array of pointers to 
                                              // functions returning int *
...
int *(*(*p)[2][2])(int,int) = &fptr;          // pointer to 2x2 array of pointers
                                              // to functions returning int *
...
int *v0 = (*(*p)[0][0])(x,y);                 // calls q
int *v1 = (*(*p)[0][1])(x,y);                 // calls r
... // etc.
share|improve this answer

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)

share|improve this answer

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

int* foo(int a, int b);

You define a function pointer ptr_to_foo (and assign the address of foo to it) like this:

int* (*ptr_to_foo)(int, int) = &foo;

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):

int* (*array_of_ptr_to_foo[2][2])(int, int);
array_of_ptr_to_foo[0][0] = &foo1;
array_of_ptr_to_foo[0][1] = &foo2;
/* and so on */

Apparently, that's not enough. Instead of the array of function pointers, we need a pointer to such an array. And that would be:

int* (*(*p)[2][2])(int, int);
p = &array_of_ptr_to_foo;
share|improve this answer

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