Array or array element in C?
- by user3646717
I'm reading a book about C programming, and I'm not sure whether there is an error in the book or not. Its about arrays and has the following array example:
Then it says:
The following statements sets all the elements in row 2 of array to zero:
for( column = 0; column <= 3; column++)
a[ 2 ][ column ] = 0;
The preceding for…