Mega Code Archive

 
Categories / C++ / Data Structure
 

Using a Variable Pointer to Point to an Array

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