Arrays - the Real Story

In C, arrays are really implemented with pointers.

When we declare an array like:
        int data[100];

The compiler allocates 100 integer cells in memory...


[up] to Overview.