<<< Array Declaration Example | Index | Array Navigation >>> |
What do we know about elements of the array ? For example,
int a[ 10 ];
C++ array is zero-based: its elements are indexed from zero to size - 1
a[ 0 ] could be pronounced as
element sub zero
first element of a
zeroeth element of a
initial element of a
<<< Array Declaration Example | Index | Array Navigation >>> |