using array name as a constant pointer : Pointer Array « Pointer « C++






using array name as a constant pointer

  
#include <iostream>

using namespace std;

int main()
{
    const int NUM_SCORES = 3;
    int highScores[NUM_SCORES] = {5, 3, 2};

    cout << "using array name as a constant pointer.\n";
    cout << *highScores << endl;
    cout << *(highScores + 1) << endl;
    cout << *(highScores + 2) << "\n\n";

    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.Using a Variable Pointer to Point to an ArrayUsing a Variable Pointer to Point to an Array
4.The name of the array is a constant pointerThe name of the array is a constant pointer
5.Incrementing a PointerIncrementing a Pointer
6.Comparing Pointer AddressesComparing Pointer Addresses