Using a Variable Pointer to Point to an Array : Array « Data Structure « C++






Using a Variable Pointer to Point to an Array

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;
}


           
         
  








Related examples in the same category

1.Array InitializationArray Initialization
2.Assigning and Displaying Array ValuesAssigning and Displaying Array Values
3.Using the cin and cout Objects with ArraysUsing the cin and cout Objects with Arrays
4.cin and cout work with char arraycin and cout work with char array
5.Outputs addresses and values of array elements.Outputs addresses and values of array elements.
6.To input numbers into an array and output after.To input numbers into an array and output after.
7.Array based on int pointer