// shows that an array name is an address to the beginning of the array

#include <iostream>
using namespace std;

int main()
{

  int number;
  
  int arr[10];

  cout << "size of int number is: " << sizeof(number) << endl;
  cout << "the address of number is: " << &number << endl;

  cout << "size of the array arr is: " << sizeof(arr) << endl;
  cout << "address of array arr is: " << arr << endl;


  return 0;
}
