Mega Code Archive

 
Categories / C++ / Pointer
 

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