How do you declare an array pointer in C++?
In short, arr has two purpose – it is the call of the array and it acts as a pointer pointing in the direction of the first element in the array. We can also claim a pointer of variety int to point to the array arr . int *p; p = arr; // or, p … Read more