Using a Variable Pointer to Point to an Array : Pointer Array « Pointer « 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 Lengh = 3;

int main ()
{
   int testScore[Lengh] = {4, 7, 1};

   for (int i = 0; i < Lengh; 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.Index a pointer as if it were an array. Index a pointer as if it were an array.
2.The Array Name as a Constant PointerThe Array Name as a Constant Pointer
3.The name of the array is a constant pointerThe name of the array is a constant pointer
4.Incrementing a PointerIncrementing a Pointer
5.Comparing Pointer AddressesComparing Pointer Addresses
6.using array name as a constant pointer