Possible Duplicate:
What does this C statement mean?
What does this expression mean?
char *(*c[10])(int **p);
What does this expression mean?
|
|||||||||||||||||||
|
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.
|
Why?
So right now we have an array of 10 function pointers.
Array of 10 function pointers that return a NOTE: If you write code like this you deserve to be slapped in the face. |
|||||||||||||||||||
|
|
cdecl is a nice tool to translate
|
||||
|
Some examples, and a snippet at the end that uses the decl. 1. Pointer to a function:
Would give you a function pointer Ex. A:
Ex. B:
Would give you a function pointer
2. Pointer to a pointer
Ex. C:
3. Function returning a pointerEx. D:
4. Function pointer to a function returning a pointerCreating a function pointer to Ex. E:
5. Array of function pointers, to function returning a char pointer, taking a char pointerEx. F:
6. "Declare c as array 10 of pointer to function (pointer to pointer to int) returning pointer to char"
|
|||||||||||
|
|
|
||||
|
|
|
Type declaration involves three operators: array
Let's add more parenthesis to make the associativity more clear.
Start from
Then see the Then Then Finally 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. |
|||
|
|
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:
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?) |
|||||
|
|
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. |
|||
|
|
|
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. |
|||
|
|