- 1
Differentiate between array of pointers and pointers to the array ??
pls answer atleat 5 differences
1 Odpowiedź
+ 2
There aren't really many differences. An array is essentially a pointer. An array of pointers is just a pointer that points to the memory location at which you can find the array elements (the pointers inside the array) laid out sequentially in memory.