Explain array of pointer
Answers
Answered by
2
Pointer and Arrays. When an array is declared, compiler allocates sufficient amount of memory to contain all the elements of the array. Base address which gives location of the first element is also allocated by the compiler. ... We can declare a pointer of type int to point to the array arr.
Similar questions