What is the difference between int *a[3] and int (*a)[3]?
|
|
|||||
|
|
|
There is an excellent article to be found at this URL on reading C type declarations. The author, Eli Bendersky, gives a simple method for reading the declarations. You start at the name of the variable and then move along the line pronouncing what you encounter as you walk along. The basic method is to start at the variable name and go right. I'll provide a simple overview, but I highly recommend you read the article.
So, in applying this rule to your particular problem... In the declaration, "
While in the declaration, "
|
||
|
|
|
|
Alternatively, you can use
declare a as array 3 of pointer to int
declare a as pointer to array 3 of int |
||
|
|
|
|
If you have any doubt, using this g++ trick is often handy:
Compile it with g++ and run it, you'll get:
So, they are definitely NOT the same ! What you have is:
|
||||||||
|
|
|
It seems like your asterisks are lost in the formatting...
declares an array of 3
declares a as a pointer to a vector of ints. This is really not much different from any other pointer, it just points to a somewhat more complicated type.
|
||
|
|
|
|
There is no difference between |
||
|
|
