Pointers to array
•
•int (*pa)[10]; // pointer to array with 10 integers
•int array10[10];
•int array11[11];
•
•pa = &array10;
•pa = &array11; // ERROR, two different objects
•
•printf("%p - %p\n", pa, array10);
•
•Conclusion: array10 and &array10 have the same value (r-value)