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:
What does this C statement mean?

What does this expression mean?

char *(*c[10])(int **p);
share|improve this question
36  
Try the "clockwise/spiral rule". – Joachim Pileborg Mar 22 '12 at 7:02
32  
If they have this in their codebase your sanity will be better without that job. – R. Martinho Fernandes Mar 22 '12 at 7:04
8  
Everytime I see one of these interview questions I feel like I'm reading something from a code obfuscation contest. – Marlon Mar 22 '12 at 7:07
4  
Such things you see exclusively in job interviews (one of the surest hint NOT to take that job) or in university exams (all of us had to pass it, mate...) – MrTJ Mar 22 '12 at 8:29
this is exactly why #golang authors have chosen to swap type and name in declarations. – yarek Mar 22 '12 at 14:50

marked as duplicate by Alexey Frunze, warren, Justin ᚅᚔᚈᚄᚒᚔ, Jarrod Roberson, Mark Mar 22 '12 at 16:44

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.

8 Answers

c is an array of 10 function pointers that return a char* and take a int** as an argument.

Why?

(*c[10])
   ^^^^ = array of 10

(*c[10])
 ^ = function pointer

So right now we have an array of 10 function pointers.

char *(*c[10])
^^^^^^ = returns a char*

char *(*c[10])(int** p)
               ^^^^^ = takes a int** as an argument

Array of 10 function pointers that return a char* and take a int** as an argument.

NOTE: If you write code like this you deserve to be slapped in the face.

share|improve this answer
13  
+1 for NOTE. Typedefs plz k thx. – Marcin Mar 22 '12 at 14:58
9  
+1 for the note – codinguser Mar 22 '12 at 15:10
+1 for getting 60 upvotes in 15 hours! – Jesse Good Mar 22 '12 at 22:31
1  
There's nothing wrong with writing code like that. – markwatson Mar 23 '12 at 15:00
1  
@markwatson It's better to use typedefs. – Marlon Mar 23 '12 at 16:04

cdecl is a nice tool to translate C gibberish into English

$ cdecl explain 'char * (*c[10]) (int **)'
declare c as array 10 of pointer to function (pointer to pointer to int) returning pointer to char
share|improve this answer
9  
Gibberish was better ROTFL – Rohit Mar 22 '12 at 7:15
1  
also available at cdecl.org – hroptatyr Mar 22 '12 at 7:26
1  
I don't think it is nice at all, is very buggy and often fails to understand perfectly valid C. – Lundin Mar 22 '12 at 8:44

Some examples, and a snippet at the end that uses the decl.

1. Pointer to a function:

void (*foo)(void);

Would give you a function pointer foo which takes no parameters and returns nothing.

Ex. A:

void fun_1(void)
{
    ...
}

foo = fun_1;
foo(); /* this would call fun_1() */

Ex. B:

char (*bar)(int);

Would give you a function pointer bar which takes 1 parameter as integer and return a char.

char fun_2(int x)
{
    if (x == 50)
        return 'a';
    return 'Z';
}

char v;
bar = fun_2;
v = bar(50); /* this would call fun_2() with 50 as parameter and return 'a' */

2. Pointer to a pointer

int **p; is a pointer that points to a pointer of type int.

Ex. C:

int y[3] = {4, 3, 6};
int *w = &y[0];
int **z = &w;

printf("print: %d ", **z);
printf("%d ", *++(*z));
printf("%d\n", *(*z+1));

print: 4 3 6

3. Function returning a pointer

Ex. D:

char *zez(char *s)
{
    s = "def";
    return s;
}


char *str = "abc";

printf("%s - ", str);
printf("%s\n", zez(str));

abc - def

4. Function pointer to a function returning a pointer

Creating a function pointer to zez()

Ex. E:

char *(*ptr_zez)(char *);

ptr_zez = zez;

printf("ptr: %s - ", str);
printf("%s\n", ptr_zez(str));

ptr: abc - def

5. Array of function pointers, to function returning a char pointer, taking a char pointer

Ex. F:

char *(*c[10])(char *);

c[0] = zez;

printf("c[0]: %s - ", str);
printf("%s\n", c[0](str));

c[0]: abc - def

6. "Declare c as array 10 of pointer to function (pointer to pointer to int) returning pointer to char"

char *cumlade(int **p)
{
    char *c;
    int i;

    if ((c = malloc(sizeof(char) * 7)) == NULL) {
        fprintf(stderr, "Unable to reserve 7 bytes\n");
        exit(0);
    }

    for (i = 0; i < 6; ++i) {
        c[i] = (unsigned char)*(*p+i);
    }
    c[6] = '\0';

    return c;
}

int main(void)
{
    int t[3][3] = {{97 ,98, 99}, {100, 101, 102}};
    int *u = &t[0][0];
    int **v = &u;
    char *ex;
    char *(*c[10])(int **p); /* <-- the fun */

    c[0] = cumlade;
    c[1] = cumlade;    

    ex = c[0](v);
    printf("EX: %s\n", ex);
    free(ex);

    ex = c[1](v);
    printf("AX: %s\n", ex);
    free(ex);

    return 0;
}

EX: abcdef
AX: abcdef

share|improve this answer
+1 This is a brilliant answer. – user681007 Mar 22 '12 at 9:10
+1 yep that about sums it up – Nishant Sharma Mar 22 '12 at 10:33
2  
This is one of the most thorough and understandable explanations I've ever seen. – Chris Cudmore Mar 22 '12 at 13:40
thanks folks :) – Morpfh Mar 25 '12 at 13:26

c is an array of 10 pointers to functions taking a pointer to pointer to int as its parameter and returning a pointer to char.

share|improve this answer

Type declaration involves three operators: array [SIZE], pointer * and function (type1 param1, type2 param2, ...). Remember that all the three operators are right-associative.

char *(*c[10])(int **p);

Let's add more parenthesis to make the associativity more clear.

char *((*(c[10]))(int *(*p)))

Start from c, the variable.

c[10] means "c is an array of 10 elements, but each element is a ..."

Then see the * beside it. *(c[10]) means "c is an array of 10 elements, each element is a pointer pointing to ..."

Then (*(c[10]))(int *(*p)) means "c is an array of 10 elements, each element is a pointer to a function, which returns ..." Using similar methods we see the function takes one parameter which is "a pointer to a pointer to an int".

Then *((*(c[10]))(int *(*p))) means "c is an array of 10 elements, each element is a pointer to a function, which returns a pointer to a ..."

Finally char *((*(c[10]))(int *(*p))) means "c is an array of 10 elements, each element is a pointer to a function, which returns a pointer to a char". That's it.

I find the Clockwise/Spiral Rule very useful. See http://c-faq.com/decl/spiral.anderson.html

But I'd rather add more brackets than using spirals.

share|improve this answer
+1 for the Clockwise/Spiral Rule. This is the first time I am hearing of it – jogabonito Mar 22 '12 at 8:06

ok now the answer you have, it is an array of function pointer, but is there clean(er) way to write code like this? Yes there is, and I am sure this code might be understood at the first glance:

typedef char *(*weirdFuncPtr)(int **p);
weirdFuncPtr funcPtrArray[10];

Btw. usually I avoid typdefs - I use them when declaring function pointers though. This makes it easier to understand this sort of C code (C is an abbreviation for Cryptic, is it?)

share|improve this answer
2  
Good advise. Always use typedef when using function pointers. – Lundin Mar 22 '12 at 8:45

It declares an array of function pointers. There are 10 elements in the array (from c[10] part of the declaration). the funtion to which these pointers can point will return char* and takes only one parameter i.e pointer to pointer to integer (int **p)

Take a look at the first answer to this question how to use array of function pointers? there you will find another example of declaring function-pointer array and it may end your confusion.

share|improve this answer
I guess this is the best answer!! and the least voted one!! – Rohit Mar 22 '12 at 7:17

If you are looking for intuitive explanation for this, http://www.geeksforgeeks.org/archives/16841

They explained this using postfix order evaluation, just like expression evaluation.

share|improve this answer

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