#include <iostream>
using namespace std;
int main()
{
int array[5], i;
cout << "Size of integer in this compiler is "
<< sizeof(int) << "
";
for (i = 0; i < 5; i++)
cout << "Address array[" << i << "] is " << &array[i]
<< "
";
return 0;
}