char(*p)[15];char(*p)(int *a);int(*pt)(char*);int *pt(char*);
anyone help?
anyone help? |
|||||
|
|
Basic rule: Start at the identifier and read right when you can, left when you must.
* If there is no identifier, imagine where it must go -- tricky I know, but there's only one legal placement. Following these rules:
|
|||||
|
|
A simple trick to find out what type a pointer points to is to just remove the
What you get is a variable declaration of the type your pointer will point to. Or not in the fourth case:
is a function prototype and not a valid pointer declaration. EDIT: The reason is that without the parentheses, the function call "operator" takes precedence over the pointer dereference operator. In the case above, the declaration in plain English is: We have a While
translates as:
Which essentially means that |
||||
|
|
|
|||||||||||||
|