FAQ 6.12 http://c-faq.com/aryptr/aryvsadr.html :
and it does not give any code on how to get "a pointer to the whole array"
and what is the significance of such a pointer ?
--
Please remove capital 'V's when you reply to me via e-mail.
int a[10];
a reference to "a" has type "pointer to int", and &a is "pointer to
array of 10 ints".
array of 10 ints".
and what is the significance of such a pointer ?
--
Please remove capital 'V's when you reply to me via e-mail.
Comment