The Array Name as a Constant Pointer : Pointer Array « Pointer « C++






The Array Name as a Constant Pointer

The Array Name as a Constant Pointer
 
#include <iostream>

using namespace std;

const int Lengh = 3;

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

   cout << "The address of the array using testScore is " << testScore << endl;

   cout << "The address of the first element of the array using &testScore[0] is " << &testScore[0] << endl;
   
   cout << "The value of the first element of the array using *testScore is " << *testScore << endl; 
   
   cout << "The value of the first element of the array using testScore[0] is " << testScore[0] << 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.Using a Variable Pointer to Point to an ArrayUsing a Variable Pointer to Point to an Array
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