Q:

Because a multidimensional array is really an array of arrays, the pointer type to which the array converts is a pointer to the first inner array

0

Because a multidimensional array is really an array of arrays, the pointer type to which the array converts is a pointer to the first inner array.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

int ia[3][4]; // array of size 3; each element is an array of ints of size 4
int (*p)[4] = ia; // p points to an array of four ints
p = &ia[2]; // p now points to the last element in ia

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now