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