Pointer C++

#include 
using namespace std;
const int Lengh = 3;
int main ()
{
   int testScore[Lengh] = {4, 7, 1};
   int* intPointer = testScore;
   int i = 0;
   while (intPointer <= &testScore[Lengh - 1])
   {
      cout << "The address of index " << i
         << " of the array is "<< intPointer << endl;
      cout << "The value at index " << i
         << " of the array is "<< *intPointer << endl;
      intPointer++;
      i++;
   }
   return 0;
}