What is pointers to arrays?
int ptr[5]; // ptr is a pointer to array
Pay attention to this statement:
int* ap[15]; // array of 15 pointers to ints
What is pointers to arrays?
int ptr[5]; // ptr is a pointer to array
Pay attention to this statement:
int* ap[15]; // array of 15 pointers to ints