In general int (*p)[3] means p is a pointer to an array which stores 3 integers.
Correct me here if i am wrong.
look at this code
int (*p)[3]={1,2,3};
Is the above statement valid?If not then why.pls explain it.
Also what will int (*p)[3] hold? i mean an int pointer or an int
Correct me here if i am wrong.
look at this code
int (*p)[3]={1,2,3};
Is the above statement valid?If not then why.pls explain it.
Also what will int (*p)[3] hold? i mean an int pointer or an int
Comment