int (*p)[3]
p is a pointr to array of size 3.
p--> |2|5|6|1|
>> here one advantage of having pointer to array is that u can change the address of p pointing to some other array of int. but in general
int p[3]
u cant change the address.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.