using namespace std; #include int main() { const int dim=5; int v[dim] = {0, 1, 2, 3, 4}; cout << "size of v[i]: " << sizeof(v[0]) << endl; cout << "value of v: " << v << ", address: v" << &v << endl; for(int i=0;i