#include using namespace std; const int ARRAY_SIZE=3; int main() { int a[ARRAY_SIZE]; cout << "Int: " << sizeof(int) << endl; cout << "Array: " << sizeof(a) << endl; cout << "Elements in the array: " << sizeof(a)/sizeof(int) << endl; // Initalize the array. for(int i=0;i> a[i]; } // Displaying the array. for(int i=0;i