Mega Code Archive

 
Categories / C++ / Pointer
 

The name of the array is a constant pointer

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